facebook twitter hatena line email

Cpp/helloworld

提供: 初心者エンジニアの簡易メモ
移動: 案内検索

hello.cpp

#include <iostream>
using namespace std;

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