staticプロジェクト

static.c

#include <stdio.h>
 
void static_int_print(void);
 
int main(void){
 
  static_int_print();
  static_int_print();
  static_int_print();
 
  return 0;
 
}
 
void static_int_print(void){
 
  static int s_i;
 
  printf("%d\n", s_i);
 
  s_i++;
 
}
 

タグ:

+ タグ編集
  • タグ:

このサイトはreCAPTCHAによって保護されており、Googleの プライバシーポリシー利用規約 が適用されます。

最終更新:2010年07月08日 14:38