单项选择题有以下程序main( ){ int a; char c=10;float f=100.0; double x;a=f =c*=(x=6.5);printf( %d %d %3.1f %3.1f n ,a,c,f,x); }程序运行后的输出结果是( )。
单项选择题程序中头文件typel.h的内容是:#define N 5#define M1 N*3程序如下:#include typel.h #define M2 N *2main( ){ int i;i=M1+M2; printf( %d n ,i);}程序编译后运行的输出结果是( )。