Qmark: 1
Total Marks: 50
Font: Microsoft Sans Serif
Vol: 8
Size: 10
Time Left:44:35
Multiple Choices
(Choose 1 answer)
What will print when the sample code below is executed?
int main() {
int a=3. b,c;
b =a=1c ; c = a < 10:
printf("a = %d, b = %d, c = %d", a,b,c);
return 0;
}
A. a=10 b=10 c=0
a=10~h=10 c=10
C. a=3. h=10 c=10
D. a=10 b=0 c=0