A.<include <stdio.h>int main(){int a =1;int b =2;printf("%d %d\n",a,b);return 0;}
B.<include <stdio.h>int main(){int a =1;int b =2;printf("%d,"a);printf("%d\n",b);return 0;}
C.<include <stdio.h>int main(){int a =1,b =2;printf("%d,,%d\n",a,b);return 0;}
D.<include <stdio.h>int main(){int a =1,a=b =2;printf("%d,%d\n",a,b);return 0;}
您可能感興趣的試卷
你可能感興趣的試題
A.八進制是一種逢八進一的機制
B.八進制由0-8這此符號來描述
C.十六進制是一種逢十六進一的機制
D.十六進制由0-9、A-F這些符號來描述
已知字符’0’的ASCII碼值為十六進制的30,下面程序的輸出是()。
void main(){union {unsigned char c;unsigned int i[4];}z;z.i[0]=0x39;z.i[1]=0x36;printf("%c\n",z.c);}
A.6
B.9
C.0
D.3
A.a=30、b=63、gbs=189、gys=9
B.a=27、b=63、gbs=190、gys=10
C.a=27、b=63、gbs=189、gys=9
D.a=27、b=63、gbs=188、gys=10
A.<include <stdio.h>int main(){printf("hello world\n");return 0;}
B.<include <stdio.h>int man(){printf("hello world\n");return 0;}
C.<include <stdio.h>int main(){printf("hello world\n")return 0;}
D.<include <stdio.h>int main(){print("hello world\n");return 0;}
A.無限次
B.有語法錯,不能執(zhí)行
C.一次也不執(zhí)行
D.執(zhí)行1次
最新試題
以下不能正確計算1×2×3×…×10的程序段是()
C語言編譯連接生成的.exe文件屬于()。
?設(shè)fp為FILE類型的指針,要以只寫的方式打開文件d:\data\file.txt,正確的語句是()。
名為printf的函數(shù)可以完成程序指定的輸出,它是C語言本身自有的一個關(guān)鍵字。
算術(shù)運算符中‘/’的優(yōu)先級高于‘%’。
int a[5];該語句表明數(shù)組a中的第五個元素為a[5]。
設(shè)x=2.3,a=8,y=4.8,則條件表達式a>x+y值為()。
下面程序執(zhí)行后如果的值是85則輸出的結(jié)果是()
關(guān)于for結(jié)構(gòu)的基本語法,下列描述錯誤的是()for(表達式1 ① ;表達式2 ② ;表達式3 ③){語句; ④}
下面不是C語言特點的是()。