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