MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { int var = 101; int *p = &var; printf("%d n", *p); } |
| A. | 101 |
| B. | Compilation Error |
| C. | Address of var |
| D. | Garbage value |
| E. | None of these |
| Answer» B. Compilation Error | |