Question:What will be output when you will execute following c code?
#include<stdio.h> void main(){ int a=3,b=2; a=a==b==0; switch(1){ a=a+10; } sizeof(a++); printf("%d",a); }Choose all that apply:
A 10
B 11
C 13
D 1
E Compilation error
+ AnswerD
+ Explanation
+ Report