MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> void main() { int num = 0; if (num = 0) { printf("It's zero n"); } else { printf("It's not zero n"); } } |
| A. | Compilation Error |
| B. | It's zero |
| C. | Runtime Error |
| D. | It's not zero |
| E. | None of these |
| Answer» E. None of these | |