Advertisement

VC++ Question

Started by April 14, 2000 11:12 AM
10 comments, last by Axehandler 24 years, 10 months ago
u can use this

#include

void abc() {
LPSTR lpszMyString = "jwalker";




}

If you are using C++, how about the STL string? (in ) Not only are they built into C++, they are simple to use, fast, and they port effortlessly from platform to platform (as they are from the STL). Also it makes it easy to do program internationalisation etc.

There is a semi-good reference here:
http://www.sgi.com/Technology/STL/basic_string.html

This topic is closed to new replies.

Advertisement