facebook twitter hatena line email

Cpp/helloworld

提供: 初心者エンジニアの簡易メモ
2019年3月26日 (火) 10:29時点におけるAdmin (トーク | 投稿記録)による版 (ページの作成:「hello.cpp <pre> #include <iostream> using namespace std; int main() { cout << "hello" << endl; } </pre> $ c++ hello.cpp $ ./a.out」)

(差分) ←前の版 | 最新版 (差分) | 次の版→ (差分)
移動: 案内検索

hello.cpp

#include <iostream>
using namespace std;

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