有以下程序: #define f(x) x*x main ( ) { int i; i=f (4+4) /f (2+2); printf ( "%d\n", i ); } 执行后

admin2009-01-15  30

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

选项 A、28
B、22
C、16
D、4

答案1

解析 本题考核的知识点是宏定义的简单应用。本题中首先将所有的宏替换掉,则表达式为i=4+4*4+4/2+2*2+2,故最后输出的i的值为28。所以,4个选项中选项A符合题意。
转载请注明原文地址:https://kaotiyun.com/show/pOHp777K
0

相关试题推荐
最新回复(0)