Cpp/helloworld
ナビゲーションに移動
検索に移動
hello.cpp
#include <iostream>
using namespace std;
int main()
{
cout << "hello" << endl;
}
$ c++ hello.cpp $ ./a.out
hello.cpp
#include <iostream>
using namespace std;
int main()
{
cout << "hello" << endl;
}
$ c++ hello.cpp $ ./a.out
|
|