細かい話 (ある文句)

ところで、C++ では、言語の規格がかなり流動してきた 1

#include <iostream>
using namespace std;
は以前は
#include <iostream.h>
としていた。

例えば
hello2.cpp

// hello2.cpp

#include <iostream.h>

int main()
{
  cout << "Hello, world." << endl;
  return 0;
}

もっと古い本を見ると #include <stream.h> なんて書いているのもある。



桂田 祐史