單項選擇題

下列程序運(yùn)行結(jié)果為()
#include< stdio.h>main ( ){ char str[ ]="SSWLIA" , c; int k; for (k=2;(c=str[k])!= '\0';k++) { switch (c) { case 'I': ++k; break ; default : putchar(c) ; continue ; case 'L': putchar(c); } putchar('*'); }}

A.W*A
B.WL*
C.WL*A
D.WLA


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題當(dāng)#include后面的頭文件用""雙撇號括起來時,尋找包含文件的方式是()

A.只在當(dāng)前目錄中搜索
B.直接按系統(tǒng)設(shè)定的方式搜索
C.先在當(dāng)前目錄中搜索,再按系統(tǒng)設(shè)定的方式搜索
D.先按系統(tǒng)設(shè)定的方式搜索,再在當(dāng)前目錄中搜索

3.單項選擇題下列哪個是賦值運(yùn)算符()

A.==
B.!=
C.=!
D.=

5.單項選擇題以下能對數(shù)組a進(jìn)行正確初始化的語句是()

A.int a[5]=(1,2,3,4,5);
B.int a[5]=[0];
C.int a[5]={1,2,3,4,5,6};
D.int a[]={0};