Definder - what does the word mean?

What is iostream?

Input/Output Stream. The C++ equivalent of stdio. It provides the cin(input), cout(output), and cerr(error) stream objects.

// hello world program

#include ;

int main()
{

std::cout << "Hello, world!" << std::endl;
return 0;

}

👍53 👎13


iostream - video

loading