MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of the following 'C' program? main() { extern int a; printf(" n%d",a); } int a=20; |
| A. | Undefined |
| B. | 20 |
| C. | Error |
| D. | Garbage Value |
| Answer» C. Error | |