首页 > 代码库 > 编程题:展示自动变量在内存中的生存期。

编程题:展示自动变量在内存中的生存期。

编程题:展示自动变量在内存中的生存期。

#include<stdio.h>

void f(int n)

{ auto int s=0;  /*auto可以省略*/

  s=s+1;

  printf("No.%d:s=%d\n",n,s);

}

void main()

{ int num;

  for(num=1;num<4;num++)

  f(num);

}

编程题:展示自动变量在内存中的生存期。 - 文豪 - WELCOME MY BLOG.


本文出自 “努力奋斗,互相提高” 博客,请务必保留此出处http://c10086.blog.51cto.com/6433044/1413795