以下标识符中,不能作为合法的 C 用户定义标识符的是()
A. For
B. Printf
C. WORD
D. sizeof
以下标识符中,不能作为合法的 C 用户定义标识符的是()
A. answer
B. to
C. signed
D. _if
以下标识符中,不能作为合法的 C 用户定义标识符的是()
A. putchar
B. _double
C. _123
D. INT
#include main(){int a=12,b=3;float x=18.5,y=4.6;printf("%f\n",(float)(a*b)/2);printf("%d\n",(int)x%(int)y);}