

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int num1 = 5, num2 = 6; if (!num1 && num2) printf("Wrong n"); else printf("Right n"); } |
A. | Runtime Error |
B. | Undefined behaviour |
C. | Compilation Error |
D. | Wrong |
E. | Right |
Answer» F. | |