On Wed, 2009-02-11 at 17:29 -0500, Sgeo wrote: > *char text? Not char* text? > > Sorry, just learning C++ now.
In both C and C++, char* text (or char *text) are correct. Which way round you put the * and space are a matter of style, by the way. *char text is invalid, I think. -- ais523