Latest C Aptitude Question SOLUTION: What will be the output of the program? #include int main() { int y=128; const int x=y; printf("%d\n", x); return 0; } Options 1) 128 2) Garbage value 3