Answers for "how cout works in c++"

C++
1

std cout c++

#include <iostream>
using std::cout;
int main()
{ 
  	cout<<"Hello world";
    return 0;
}
Posted by: Guest on December-15-2020
0

cout in c++

The cout object in C++ is an object of class ostream.
Posted by: Guest on July-16-2021

Browse Popular Code Answers by Language