单项选择题
有以下程序: main( ) { int m=3,n=4,x; x=-m++; x=x+8/++n; printf("%d\n",x); } 程序运行后的输出结果是( )。
单项选择题 若变量已正确定义,要求程序段完成求5!的计算,不能完成此操作的程序段是( )。
单项选择题 有以下说明和定义语句:struct student{ int age; char num[8];};struct student stu[3]={{20,"200401"},{21,"200402"},{10\9,"200403"}};struct student *p=stu;以下选项中引用结构体变量成员的表达式错误的是( )。
单项选择题 用C语言编写的代码程序( )。