Answers for "std::cout implementation"

C++
0

std::cout and cout

//c++
cout and std::cout both are same, but the only difference is that if we 
use cout, namespace std must be used in the program or if you are not 
using std namespace then you should use std::cout.
Posted by: Guest on December-08-2020

Browse Popular Code Answers by Language