|
codepad
|
|
#include<stdio.h>
int main()
{
char *s = "Hello world";
printf(s);
int x = 10;
return 0;
}
|
| view (9 lines, 1 line of output) |
#include <iostream>
using namespace std;
int main()
{
cout << "Hello World!" << endl;
return 0;
}
|
| view (8 lines, 1 line of output) |