MCQOPTIONS
Saved Bookmarks
| 1. |
What will be output of following program? #include #include int main(){ int register a; scanf("%d",&a); printf("%d",a); return 0; } //if a=25 |
| A. | 25 |
| B. | Address |
| C. | 0 |
| D. | Compilation error |
| Answer» E. | |