In C++ we always put the following at the top of the program
#include
What about for C?
Well, this is called the standard I/O header. In C you have:
#include
It's not an analog to
. There is no analog to iostream in C -- it lacks objects and types. If you're using C++, it's the analog to
.
See also this fantastic question and its answer,