InterviewSolution
Saved Bookmarks
| 1. |
#include<stdio.h>int main(void){int a = 1;int b = 0;b = a++ + a++;printf("%d %d",a,b);return 0;}(A) 3 6(B) Compiler Dependent(C) 3 4(D) 3 3 |
| Answer» | |