InterviewSolution
Saved Bookmarks
| 1. |
#include <stdio.h>int main(){if (sizeof(int) > -1)printf("Yes");elseprintf("No");return 0;}(A) Yes(B) No(C) Compiler Error(D) Runtime Error |
| Answer» | |