Quote:
Originally Posted by Stonemotmot
Thanks, so am i correct in understanding that println is a java command not c++ which uses printf?
I will try this thanks for the help.
|
It's because printf doesn't have a class to go along with it. In Java, everything must have a class (You essentially can't call a function without a . before it), but in C++ classes are optional.