What will be the output of the program?

1.5 # define dp(e) printf(#e “ = %d\n”,e)
main( )
{
int x =3, y = 2;
dp(x/y)
}
What will be the output of the program?
A) prints x/y = 1
B) prints #e = 1.5
C) prints #x/y = 1
D) none of the above


Leave a Reply