In C++ is there any difference between the following commands:
delete x; delete(x);
It's the same as the difference between:
i = i + 1; i = i + (1);
i.e. none. delete is an operator, not a function.
delete