8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Prefix increment/decrement operator seems to be working fine but postfix increment/decrement operator throws error. Code to reproduce
int i =0; while(i < 5) { i++; }
This behaviour is not limited to any type. Was able to reproduce this for pointers was well in similar fashion