what is the output of the following C code ? int main () { int i =0 int x = i ++, y =++i ; printf("%d %d/n", x,y); return 0}
ক
0,2
খ
0,1
গ
12
ঘ
Undefined
সঠিক উত্তর: 0,1