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; }