StevenWu的程式筆記
2012年4月17日 星期二
TQC+ C語言認證範例 304
#include<stdio.h>
#include<stdlib.h>
void callFun();
int main(){
int i;
for(i=1;i<=5;i++){
callFun();
}
system("pause");
return 0;
}
void callFun(){
int ai=100;
static int si=100;
ai++;
si++;
printf("ai=%d, si=%d\n",ai,si);
}
沒有留言:
張貼留言
較新的文章
較舊的文章
首頁
訂閱:
張貼留言 (Atom)
沒有留言:
張貼留言