MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> double n = 10; int main() { int n = 6; printf("%d", n); } |
| A. | Compilation Error |
| B. | Runtime Error |
| C. | 6 |
| D. | 10 |
| E. | None of these |
| Answer» D. 10 | |