What will be output of the following “C” code?
		
					

Loading

โœช Choose the correct option.

What will be output of the following “C” code?


#define mysizeof(a) (&a+1) - &a
void main()
{
float d;
printf("%d
", mysizeof(d) );
}

note: assume sizeof float is 8 bytes

A. 8
B. 4
C. 1
D. compiler error