單項選擇題若變量已正確定義,表達式(j=1,++j)的值是()

A.1
B.2
C.3
D.0


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題要調(diào)用數(shù)學函數(shù)時,在#include命令行中應包含()

A.”stdio.h”
B.”string.h”
C.”math.h”
D.”ctype.h”

2.單項選擇題不正確的字符串賦值或賦初值的方式是()

A.charstr[]="string";
B.charstr[7]={’s’,’t’,’r’,’i’,’n’,’g’};
C.charstr[10];str="string";
D.charstr[7]={’s’,’t’,’r’,’i’,’n’,’g’,’\0’};

4.單項選擇題定義一個4個元素的一維整型數(shù)組,()是不正確的。

A.inta[4];
B.inta[4]={1,2,3,4,5};
C.inta[4]={1,2,3};
D.inta[4]={1};