Thread: String Library
View Single Post
Old 03-15-2003, 01:47 PM   #14 (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
Hm, It compiles fine with me. But try this,

Code:
#include <iostream>
#include <string>
#include <conio.h>

using namespace std;

string test="abc";

int main(void)
{
	cout << test.c_str() << endl;
	getch();
	return 0;
}
__________________
OpenGL, DirectX
Travis Dane is offline   Reply With Quote