Report Bug
Qus :

What will be output if you will compile and execute the following c code?

int main()
{ 
	int a=5; 
	float b;
	printf("%d",sizeof(++a+b));
	printf(" %d",a); return 0;
}

Qus



A. 2 6
B. 4 6
C. 2 5
D. 4 5


Solution
D. 4 5






Report Bug