C Basics - C programming (MCQ) questions for Q. 27503
Q. What will be the output of the program?
#include<stdio.h>
int main()
{
int y=128;
const int x=y;
printf("%d\n", x);
return 0;
}- Published on 26 Feb 17a. 128
b. Garbage value
c. Error
d. 0
ANSWER: 128