C 練習(xí)實(shí)例41 - static
題目:學(xué)習(xí)static定義靜態(tài)變量的用法。
程序分析:無(wú)。
程序源代碼:
// Created by o2fo.com on 15/11/9. // Copyright © 2015年 W3Cschool教程. All rights reserved. // #include<stdio.h> int main() { void fun(); for(int i=0;i<3;i++) fun(); return 0; } void fun() { int i=0; static int static_i=0; printf("i=%d\n",i); printf("static_i=%d\n",static_i); i++; static_i++; }
以上實(shí)例輸出結(jié)果為:
i=0 static_i=0 i=0 static_i=1 i=0 static_i=2
更多建議: