+ 3
What happens if I place only a semicolon on a line after a statement??
4 Antworten
+ 4
White space doesn't matter in Java or C++ or PhP.
As long as it doesn't separate a keyword/name/value, it's fine.
+ 3
makes no diffrence
+ 1
I'm not sure what you mean, please can you post an example?
+ 1
Nothing
eg:
if (test)
;
is compilled and nothing happens .