

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> int main() { int t1 = 3, t2 = 5; int t3 = ~t1 & t2; printf("%d n", t3); } |
A. | -3 |
B. | 5 |
C. | 3 |
D. | -5 |
E. | 4 |
Answer» F. | |