Q. What is the output of this program?
Code:
#include <stdio.h>
#define p 17;
int main()
{
printf("%d",p);
return 0;
}
β
Correct Answer: (C)
Compilation error
#include <stdio.h>
#define p 17;
int main()
{
printf("%d",p);
return 0;
}
You must be Logged in to update hint/solution