mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 14:12:10 +02:00
30 lines
No EOL
648 B
HTML
30 lines
No EOL
648 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
|
<html lang="en">
|
|
<head>
|
|
<meta http-equiv="Content-Language" content="en-us">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>C++ Hello World example</title>
|
|
</head>
|
|
<body bgcolor="#ffffcc">
|
|
<font color="#0066ff">Copy the code below and paste it into the <b>main.cpp</b> file in the Editor View:</font>
|
|
|
|
<pre>
|
|
#include <iostream>
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
int main()
|
|
{
|
|
string yourName;
|
|
|
|
cout << "Enter your name: ";
|
|
cin >> yourName;
|
|
cout << "Hello " + yourName << endl;
|
|
|
|
return 0;
|
|
}
|
|
|
|
</pre>
|
|
|
|
</body>
|
|
</html> |