What will be the output of the program?#include int main() { int y=128; const int x=y; printf('%d\n', x); return 0; } - Study24x7
Social learning Network
03 Mar 2023 12:29 PM study24x7 study24x7

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

128

B

Garbage value

C

Error

D

0

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles