單項(xiàng)選擇題

已知字符’0’的ASCII碼值為十六進(jìn)制的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


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題當(dāng)輸入數(shù)據(jù):2763時(shí),下面程序的運(yùn)行結(jié)果是()。

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

2.單項(xiàng)選擇題下面程序中,合法的選項(xiàng)是()。

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;}

3.單項(xiàng)選擇題假設(shè)有程序段:int k=0;while(k=1)k++;while語句的循環(huán)次數(shù)是()。

A.無限次
B.有語法錯(cuò),不能執(zhí)行
C.一次也不執(zhí)行
D.執(zhí)行1次

4.單項(xiàng)選擇題在C語言中,關(guān)于變量的作用域,下列描述中錯(cuò)誤的是()。

A.局部變量只在整個(gè)函數(shù)的運(yùn)行周期中有效
B.全局變量的作用域?yàn)檎麄€(gè)程序的運(yùn)行周期
C.當(dāng)全局變量與局部變量重名時(shí),局部變量會(huì)屏蔽掉全局變量
D.全局變量會(huì)覆蓋掉所有與它重名的局部變量