Name: Anonymous 2010-09-16 22:38
ITT:
We write different ways to produce 'hello world' in the shell
language : c++
no syntax errors, and no copying others work. I'll start with something simple
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}
We write different ways to produce 'hello world' in the shell
language : c++
no syntax errors, and no copying others work. I'll start with something simple
#include <iostream>
using namespace std;
int main()
{
cout << "Hello world!" << endl;
return 0;
}