[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[ale] basic gcc compiler issues...
- Subject: [ale] basic gcc compiler issues...
- From: dmcnash at charter.net (Doug McNash)
- Date: Thu Jan 8 09:47:47 2004
- In-reply-to: <[email protected]>
- References: <[email protected]>
Almost there, add
using namespace std;
My version phonetic version of hw.cpp
#include <iostream>
#include <iomanip>
using namespace std;
main()
{
string w1 = "Jello";
string w2 = "Whirled";
string ow = w1 + " " + w2;
cout << ow << endl;
}