0
what does" cout <<++y " mean??
3 Respuestas
+ 3
This will add 1 to y and then print the result to the output (screen)
+ 1
Adds one before doing anything else. y++ adds one after that. For example couting it.
0
i think that the same of y++ (y++=y+1)