Leo Linuxhnrainll.blog.chinaunix.net
hnrainll
全部博文(354)
2010年(300)
2009年(54)
大鬼不动
叶绍琛
路沐堇
HoariNes
快乐的猪
6551130
zjt_pond
K__奕__
cynthia
格伯纳
Bsolar
葫芦娃的
分类: C/C++
2010-06-29 07:14:22
#include <stdio.h> #include <stdlib.h> int count; void func1(); void func2(); int main(int argc, char *argv[]) { count = 100; func1(); system("pause"); return 0; } void func1() { int temp; temp = count; func2(); printf(" count is %d\n", count); func2(); } void func2() { int count; for(count = 1; count < 20; count++) { printf("."); } printf("\n"); }
上一篇:C语言例程30:函数的递归调用
下一篇:C语言例程32:变量的存储类型
登录 注册