InterviewSolution
Saved Bookmarks
| 1. |
Predict the output of following C program#include <stdio.h>int main(){char a = 012;printf("%d", a);return 0;}(A) Compiler Error(B) 12(C) 10(D) Empty |
| Answer» | |