Home C-program 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;}a. 128b. Garbage valuec. Errord. 0ANSWER: 128
Post a Comment