A
Q. What is the output of this program?
Code:
#include <stdio.h>
#define p 17;
int main()
{
printf("%d",p);
return 0;
}
#define p 17;
int main()
{
printf("%d",p);
return 0;
}
- Correct Answer - Option(C)
- Views: 30
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.