#include<stdio.h>
#define S(x)4*(x)*x+1
main()
{int k=5,j=2;
printf(“%d\n”,S(k+j));
}
程序运行后的输出结果是
A.197
B.143
C.33
D.28
[单选题]有以下程序:include<stdio.h>define S(x)4*(x)*x+1main( ){int k=5,j=2;printf("%d/n",S(k+j));}程序运行后的输出结果是( )。A.197B.143C.33D.28
[单选题]有以下程序#include<stdio.h>#define f(X)X*X*Xmain( ){int a=3,s,t;s=f(a+1);t=f((n+1));printf(“%d,%d\n”,s,t);}程序运行后的输出结果是A.10,64B.10,10C.64,10D.64,64
[单选题]有以下程序#include <stdio.h>#define S(x) (x)*x*2main( ){ int k=5, j=2;printf( "%d,”,s(k+j) ); printf(”%d\n”,s( (k-j) ) );}程序运行后的输出结果是A.) 98,18B.) 39,11C.) 39,18D.) 98,11
[单选题](35)有以下程序#include <stdio.h>#define S(x) 4*(x)*x+1main(){ int k=5,j=2;printf("%d/n",S(k+j));}程序运行后的输出结果是A.)197B.)143C.)33D.)28
[单选题]有以下程序#include <stdio.h>#define f(x) x*x*xmain(){ int a=3,s,t;s=f(a+1);t=f((a+1));printf("%d,%d/n",s,t);}程序运行后的输出结果是A.)10,64B.)10,10C.)64,10D.)64,64
[单选题]有以下程序:#include
[单选题]有以下程序include<stdio.h>void fun(int x){if(x/2>1)fun(x/2);printf("%d",x);}main{fun(7);printf("/n");}程序运行后的输出结果是( )。A.1 3 7B.7 3 1C.7 3D.3 7
[单选题]有以下程序#include<stdio.h>struct ord{int x,y;} dt[2]={1,2,3,4};main(){struct ord*p=dt;printf(“%d,”,++(p一>x));printf(“%d\n”,++(p一>y));}程序运行后的输出结果是A.1,2B.4,1C.3,4D.2.3
[单选题]有以下程序:include<stdio.h>main( ){int X=011;printf("%d/n",++x);}程序运行后的输出结果是( )。A.12B.11C.10D.9
[单选题]有以下程序#include<stdio.h>void fun(int x){if(x/2>1)fun(x/2);printf(”%d”,x);}main( ){fun(7);printf(”\n”);}程序运行后的输出结果是( )。A.1 3 7B.7 3 1C.7 3D.3 7