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