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