MCQOPTIONS
Saved Bookmarks
| 1. |
What will be output of following program? #include #include int main(){ char far *p,*q; printf("%d %d",sizeof(p),sizeof(q)); return 0; } |
| A. | 2 2 |
| B. | 4 4 |
| C. | 4 2 |
| D. | 2 4 |
| Answer» C. 4 2 | |