In C++ is there any difference between the following commands:
delete x; delete(x);
The difference is only if the x is expanded by a pre-compiler, in which case the semantics of the (x) will cause an evaluation of the x expression before calling an operator delete on the result of that evaluation.
x
(x)
operator delete