Thread: String Library
View Single Post
Old 03-14-2003, 02:24 PM   #2 (permalink)
Travis Dane
Code Monkey
 
Travis Dane's Avatar
 
Join Date: Feb 2003
Location: Netherlands
Posts: 89
Travis Dane is on a distinguished road
Send a message via ICQ to Travis Dane
VC++ should already have a string library.

Code:
 #include <string>

 std::string="test";

 int main(void)
 {
   return 0;
 }
Try running this, It should work.
__________________
OpenGL, DirectX
Travis Dane is offline   Reply With Quote