2.1 何もしないプログラム

donothing.cpp

/*
 * donothing.cpp
 */

int main()
{
  return 0;
}

コンパイルと実行の結果

oyabun% g++ -o donothing donothing.cpp
oyabun% ./donothing 
oyabun%



桂田 祐史