10.以下程序中,运行结果是36的有()。 A: B: include C: defineM(y) y*y intmain() { printf("%d\n",M(6+0)); return0; } D: E: include F: defineM(y) (y)*(y) intmain() { printf("%d\n",M(6+0)); return0; } G: H: include intM(inty) { returny*y; } intmain() { printf("%d\n",M(6+0)); return0; } I: J: include intM(inty) { return(y)*(y); } intmain() { printf("%d\n",M(6+0)); return0; }
10.以下程序中,运行结果是36的有()。 A: B: include C: defineM(y) y*y intmain() { printf("%d\n",M(6+0)); return0; } D: E: include F: defineM(y) (y)*(y) intmain() { printf("%d\n",M(6+0)); return0; } G: H: include intM(inty) { returny*y; } intmain() { printf("%d\n",M(6+0)); return0; } I: J: include intM(inty) { return(y)*(y); } intmain() { printf("%d\n",M(6+0)); return0; }
宏定义命令defineM 200将把M定义为200。
宏定义命令defineM 200将把M定义为200。
Outstanding graduates of Yale university include President Wilson and more than 80 Senators.
Outstanding graduates of Yale university include President Wilson and more than 80 Senators.
以下是一个带参数的宏定义命令#definem(x)x*x*x*
以下是一个带参数的宏定义命令#definem(x)x*x*x*
06410141:下面程序的运行结果是()。 #include #include int main( ) { char x[80]="AB", y[80]="LMNP"; int n=0; strcat(x, y); while (x[n++]!='\0') y[n]=x[n]; puts(y); return 0; }
06410141:下面程序的运行结果是()。 #include #include int main( ) { char x[80]="AB", y[80]="LMNP"; int n=0; strcat(x, y); while (x[n++]!='\0') y[n]=x[n]; puts(y); return 0; }
以下是一个带参数的宏定义命令#definem(x) x*x*x*x[img=451x95]17e0a75d6540fc7.jpg[/img]
以下是一个带参数的宏定义命令#definem(x) x*x*x*x[img=451x95]17e0a75d6540fc7.jpg[/img]
以下程序的输出结果是 #include<iostream.h> voidmain( ) { charx=040; cout<<(x<<1);} A: 100 B: 80 C: 64 D: 32
以下程序的输出结果是 #include<iostream.h> voidmain( ) { charx=040; cout<<(x<<1);} A: 100 B: 80 C: 64 D: 32
用来定义数学函数的头文件是()。 A: #include B: #include C: #include D: #include
用来定义数学函数的头文件是()。 A: #include B: #include C: #include D: #include
下列#include命令中,正确的是()。 A: #include<br/>"math.h" B: #include<br/>[math.h] C: #include<br/>(math.h) D: #include<br/>{math.h}
下列#include命令中,正确的是()。 A: #include<br/>"math.h" B: #include<br/>[math.h] C: #include<br/>(math.h) D: #include<br/>{math.h}
下列#include命令中,正确的是________。 A: B: include "math.h" C: D: include [math.h] E: F: include (math.h) G: H: include {math.h}
下列#include命令中,正确的是________。 A: B: include "math.h" C: D: include [math.h] E: F: include (math.h) G: H: include {math.h}