一. (25) 116、以下程序运行后的输出结果是__3____
main() { int p=30; printf("%d\n",(p/3>0
p/10 :p%3)); } 66、若想通过以下输入语句使a=5
0 , b=4,c=3,则输入数据的形式应该是__5
0 , 4,c=3____
int b,c; float a; scanf("%f,%d,c=%d",&a,&b,&c) 27、请在以下程序第一行的下划线处填写适当内容,使程序能正常运行
_double max 或 extern double max_____( double,double); main() { double x,y; scanf("%1f%1f",&x,&y); printf(%1f\n",max(x,y)); } double max(double a,double b) { return(a>b
a:b);} 57、以下程序的输出结果是__246____
void fun() { static int a = 0; a += 2; printf("%d",a); } main() { int cc; for(cc = 1;cc < 4; cc++) fun(); printf("\n"); } 43、以下程序运行后的输出结果是_81_____
#define S(x) 4*x*x+1 main() { int i=6,j=8; printf("%d\n",S(i+j)); } 73、以下函数 inverse 的功能是使一个字符串按逆序存放
inverse(str) char str[]; { char m; int i,j; for(i=0,j=strlen(str);i