Is it possible to replace an operator with a variable in C++?
In other words instead of…
++ Foo;
Could I use…
int var = ++;
Then…
var Foo;
In other words instead of…
++ Foo;
Could I use…
int var = ++;
Then…
var Foo;
Last edited: