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