string class

lrtaylor@micron.com lrtaylor@micron.com
Fri Jun 4 18:42:00 GMT 2004


Do this instead:

#include <string>

using namespace std;

int main()
{
	string s1("hello world");

	return 0;
}

Make sure you compile it with g++.

Cheers,
Lyle


-----Original Message-----
From: gcc-help-owner@gcc.gnu.org [mailto:gcc-help-owner@gcc.gnu.org] On
Behalf Of Wim Verleyen
Sent: Friday, June 04, 2004 12:08 PM
To: gcc-help@gcc.gnu.org
Subject: string class

Hello,

I try to compile following C++ program on gcc/g++ version 3.3.

include<string.h>

int main()
{
	string s1("hello world");

	return 0;
}

make gives me:

-  string undeclared (first use in this function)....

plz help me...

Wim




More information about the Gcc-help mailing list