静态存储类

#include stdio.h/* function declaration */void func(void);static int count = 5; /* global variable */

编程学习网为您整理以下代码实例,主要实现:静态存储类,希望可以帮到各位朋友。

#include <stdio.h>

/* function declaration */
voID func(voID);

static int count = 5; /* global variable */

main() {

   while(count--) {
      func();
   }

   return 0;
}

/* function deFinition */
voID func( voID ) {

   static int i = 5; /* local static variable */
   i++;

   printf("i is %d and count is %d\n", i, count);
}
本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐