MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? #include void main() { int x = 0; if (x = 0) printf("Its zero\n"); else printf("Its not zero\n"); } |
| A. | Its not zero |
| B. | Its zero |
| C. | Run time error |
| D. | None |
| Answer» B. Its zero | |