Computer Science, asked by errortcp, 8 hours ago

#include <stdio.h>


int main()

int x =4, y = 0;

int z;

z = (y++, y);

printf("%d\n", z);

return 0;

}​

Answers

Answered by nityasren2003
0

Answer:

( 1 , 0 )

Explanation:

y++ =y+1

so , y=y+1=0+1=1.

Similar questions