What will be the output of following C code? void main() { int t,*pt; register int y,*py; pt=&t; py=&y; t=10; y=90; printf(%d %d,*pt,*py); }
Reveal answer
Fill a bubble to check yourself
What will be the output of following C code? void main() { int t,*pt; register int y,*py; pt=&t; py=&y; t=10; y=90; printf(%d %d,*pt,*py); }