以下程序的輸出結(jié)果為()
#include "stdio.h" main(){int a;for(a=0;a<10;a++);printf("%d",a);}
執(zhí)行下列語(yǔ)句后,b 的十進(jìn)制值是()
int x=240,y=15,b;
char z=’A’;
b=(( x && y ) && ( z < ’a’ ));
當(dāng)a=3,b=2,c=1;時(shí),執(zhí)行以下程序段后a=()
if(a>b) a=b;
if(b>c) b=c;
else c=b;
c=a;