InterviewSolution
Saved Bookmarks
| 1. |
#include <stdio.h>int main(){int y = 0;int x = (~y == 1);printf("%d", x);return 0;}(A) 0(B) 1(C) A bog negative Number(D) Compiler Error |
| Answer» | |