1.

#include <stdio.h>int main(){int x = 10;int y = (x++, x++, x++);printf("%d %d\n", x, y);return 0;}(A) 13 12(B) 13 13(C) 10 10(D) Compiler Dependent

Answer»


Discussion

No Comment Found

Related InterviewSolutions