Q. What will be the output?
Code:#include <stdio.h>
int main()
{
int main = 5;
printf("%d", main);
return 0;
}
β
Correct Answer: (C)
run without any error and prints 5
#include <stdio.h>
int main()
{
int main = 5;
printf("%d", main);
return 0;
}
You must be Logged in to update hint/solution