Hi,
what is the difference between "#include <iostream>" (which works) and "#include <iostream.h>" (g++ complains about not finding iostream.h).
Christina Rossmanith
the latter is the old name of the header file. The first (without .h) is the new one
Thank you - I didn't expect header files without extension, so I thought there might be some magic which adds some extension automatically.