网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

以下程序的输出结果是( )。#define f(x) x*xmain(){ int a=6,b=2,c;c=f(a)/f(b);printf("%d\n",c);}A.9 B.6C.36 D.18


参考答案

更多 “ 以下程序的输出结果是( )。#define f(x) x*xmain(){ int a=6,b=2,c;c=f(a)/f(b);printf("%d\n",c);}A.9 B.6C.36 D.18 ” 相关考题
考题 有以下程序:define f(x)x*xmain(){ int i;i=f(4+4)/f(2+2);printf("% d\n", i);}执行后的输出结果是【 】。

考题 以下程序的输出结果是______。 #define f(x)x*x main() { int a=6,b=2,c; c=f(a)/f(b); printf("%d\n",c); }A.9B.6C.36D.18

考题 有以下程序: #define f(x) x*x main ( ) { int i; i=f (4+4) /f (2+2); printf ( "%d\n", i ); } 执行后输出结果是A.28B.22C.16D.4

考题 以下程序的输出结果是()。includeint fun(int n,int *s){ int f1,f2;if(n==0||n==1)*s= 以下程序的输出结果是( )。 #include<stdio.h> int fun(int n,int *s) { int f1,f2; if(n==0||n==1) *s=1; else { fun(n-1,f1); fun(n-2,f2); *s=f1+f2; } } void main() { int x; fun(6,x); printf("\n%d" ,x);}A.7B.13C.9D.10

考题 有以下程序 #define f(x) x*x main( ) { int i; i=f(4+4)/f(2+2); printf(“%d\n”,i); } 执行后输出结果是( )A.28B.22C.16D.4

考题 以下程序的输出结果是( )。 #define f(x) x*x main {int a=6,b=2,c; c=f(a)/f(b); printf(“%d\n”,c); }A.9B.6C.36D.18

考题 有以下程序: int fa(int x) { return x*x; } int fb(int x) { return x*x*x; } int f(int (*f1)(),int (* f2)(),int x) { return (*f2)(x)-(*f1)(x); } main() { int i; i=f(fa,fb,2); printf("%d\n",i); } 程序运行后的输出结果是( )A.-4B.1C.4D.8

考题 有以下程序: #define f(x) x*x main() { int i; i=f(4+4)/f(2+2); printf("%d\n",i); } 执行后输出结果是( )。A.28B.22C.16D.4

考题 有以下程序 #define f(x) x*x main() { int i; i=f(4+4)/f(2+2); printf("%d\n",i); } 执行后输出结果是A.28B.22C.16D.4