iostream


The **iostream header includes operations for reading/writing to files and the console itself, including

std::cout

Here's a simple use of the cout command:

cpp-std/cout.cpp

#include <iostream>

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