> I have a simple question which I cannot find a simple > answer. > > I have: > const Char *Text = "Two words"; > > How can I delete the "Two" in this char so that it > remains only "words" in the char *Text ? > > This may sound silly but I have spend 2 hours on it.
Char *pText = Text; pText += 4; use a seperate pointer. --- Aaron Ardiri PalmOS Certified Developer [EMAIL PROTECTED] http://www.mobilewizardry.com/members/aaron_ardiri.php -- For information on using the Palm Developer Forums, or to unsubscribe, please see http://www.palmos.com/dev/support/forums/
