Logo
সব প্রশ্নে ফিরে যান
ICT

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}

A) 0,2
B) 0,1
সঠিক উত্তর
C) 12
D) Undefined