[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[ale] basic gcc compiler issues...



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;
}