7. Hi! This is_______ new teacher.__________ name is Linda.
A. your; My
B. his; Your
C. your ; Her
D. her; His
第1题:
语句“printf("akbre"\'hi\'y\\\bou\n")”;的输出结果是( )。
A.akbre\'hi\'y '\\\bou
B.a\bre\'hi\\y\bou
C.re 'hi'you
D.abre'hi'y\bou
第2题:
【单选题】下面程序的输出是。 main() {enum team {my,your=4,his,her=his+10}; printf("%d%d%d%dn",my,your,his,her);}
A.0 1 2 3
B.0 4 0 10
C.0 4 5 15
D.l 4 5 15
第3题:
1、下列标识符中,不合法的用户标识符为()
A.month
B._5xy
C.int
D.your_name
第4题:
下列标识符中,不合法的用户标识符为()
A.month
B._5xy
C.int
D.your_name
第5题:
2、如何为结构体类型定义一个新的名称? struct type_name{ code_block; };
A.typedef struct type_name new_name{ code_block; };
B.typedef struct type_name{ code_block; }new_type_name;
C.typedef struct new_name type_name{ code_block; };
D.struct type_name{ code_block; }typedef new_name;