facebook twitter hatena line email

「Cpp/helloworld」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
(ページの作成:「hello.cpp <pre> #include <iostream> using namespace std; int main() { cout << "hello" << endl; } </pre> $ c++ hello.cpp $ ./a.out」)
 
(相違点なし)

2019年3月26日 (火) 10:29時点における最新版

hello.cpp

#include <iostream>
using namespace std;

int main()
{
    cout << "hello" << endl;
}
$ c++ hello.cpp
$ ./a.out