C语言
zhupananhui
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
引用作为函数参数的例子,有很多知识点。
程序里的解释是自己的一点心得,只有其他的知识点在百度上基本上都可以查到,而且讲得很好。// Pointer.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include #include /*---线性单链表的存储结构-----*/typedef struct no原创 2013-11-25 10:22:59 · 1334 阅读 · 1 评论 -
浅析C语言中的5个swap函数
这些操作细节应该多积累,多练才能掌握的好啊!#include "stdafx.h"/*-----try to swap the value of a and b, but it does not work out.*//*void swap1(int x,int y){ int temp; temp = x; x = y; y = temp;}*//*------usi原创 2013-11-25 09:14:50 · 5428 阅读 · 0 评论
分享