

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { if (~2 == 3) { printf("Yes n"); } else { printf("No n"); } } |
A. | Compilation Error |
B. | Runtime Error |
C. | Garbage value |
D. | Yes |
E. | No |
Answer» F. | |