Question: What will be output if you will compile and execute the following c code?- #include<stdio.h>
- int main(){
- int a=5;
- float b;
- printf("%d",sizeof(++a+b));
- printf(" %d",a);
- return 0;
- }
- #include<stdio.h>
- int main(){
- int a=5;
- float b;
- printf("%d",sizeof(++a+b));
- printf(" %d",a);
- return 0;
- }
A
B
C
D
E
2 6
B
4 6
C
2 5
D
4 5
E
Compiler error
Note: Not available