What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y; printf(“%d %dn”,x,y); }
11,15
10,15
11, 16
10,16