如果结构变量s中的生日是“1984年11月11日”,下列对其生日的正确赋值是()。struct student{int no;char name[20];char sex;struct{int year;int month;int day;}birth;};struct student s;
A. year = 1984; month = 11; day = 11;
B. birth.year = 1984; birth.month = 11; birth.day = 11;
C. s.year = 1984; s.month = 11; s.day = 11;
D. s.birth.year = 1984; s.birth.month = 11; s.birth.day=11;
查看答案
C 语言程序中可以对程序进行注释,注释部分必须用什么符号括起来?
A. '{' 和‘}'
B. '['和']'
C. '*/' 和 '/*'
D. '/*'和'*/'
C语言源程序的扩展名是( )。
A. .exe
B. .obj
C. .cpp
D. .c
定义int x=1,y=2;,表达式1.0+x/y的值是( )。
A. 0
B. 1
C. 1.0
D. 1.5
若x是double型变量,n是int型变量,执行以下语句( ),并输入3 1.25后,x的值是1.25,n的值是3。
A. scanf("%d%lf", &n, &x);
B. scanf("%lf%d", &x, &n);
C. scanf("%lf%d", &n, &x);
D. scanf("%d, %lf", &n, &x);