0
How will you type the iostream.h
2 ответов
+ 8
iostream.h is no longer used in later versions of C++. We now use the header 'iostream' instead. (Without .h).
e.g.
#include <iostream>
using namespace std;
int main()
{
// codes
}
+ 2
just type
#include <iostream>