codepad
|
|
#include<iostream>
using namespace std;
int main()
{
cout<< "Hello World";
return 0;
}
|
view (8 lines, 1 line of output) |
#include <iostream>
using namespace std;
int main(){
cout << "hello world" << endl;
}
|
view (9 lines, 1 line of output) |