What is the output ? main() { int x=2000, *p, y = 200; p = &y; x = x/*p; printf("%d", x); }
Reveal answer
Fill a bubble to check yourself
What is the output ? main() { int x=2000, *p, y = 200; p = &y; x = x/*p; printf("%d", x); }