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