Leo Linuxhnrainll.blog.chinaunix.net
hnrainll
全部博文(354)
2010年(300)
2009年(54)
大鬼不动
叶绍琛
路沐堇
HoariNes
快乐的猪
6551130
zjt_pond
K__奕__
cynthia
格伯纳
Bsolar
葫芦娃的
分类: C/C++
2010-06-24 00:34:00
#include <stdio.h> #include <stdlib.h> void swap(int *x, int *y); int main(int argc, char *argv[]) { int i, j; i = 12; j = 36; printf("i and j before swapping: %d %d\n", i, j); swap(&i, &j); printf("i and j after swapping: %d %d\n", i, j); system("pause"); return 0; } void swap (int *x, int *y) { int temp; temp = *x; *x = *y; *y = temp; }
上一篇:C语言例程24:函數的值調用
下一篇:C语言例程26:數組函數的調用
登录 注册