Answers for "how to print cout 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
1

c++ print

cout << "hello world"
Posted by: Guest on October-08-2020

Browse Popular Code Answers by Language