【简答题】以下程序运行后的输出结果是【 】 include <stdio, h> fun( int a) { int b = 0; static int c = 3; b++;c++; return(a + b + c); } main( ) int i,a = 5; for(i =0;i <3;i ++ ) prinff('% d% d' ,i,fun(a) ); printf(' /n' ); }
【简答题】Recently the “China dream” has been the subject of a public topic. Although it is quite common for Chinese people to dream of an empowered or a prosperous(繁荣) China, most people also have their own dr...
【简答题】以下程序运行后的输出结果是______。 fun(int a) { int b=0; static int c=3; b++:c++; return (a+b+c); } main() { int i,a=5; for (i=0;i<3;i++)pruntf('%d%d',i,fun(a)); printf('/n'); }