cout console

Solutions on MaxInterview for cout console by the best coders in the world

showing results for - "cout console"
Silvia
23 Nov 2019
1//std::cout -> Write in the console
2std::cout<<" Your text here "<<std::endl;
3//std::endl -> Add a line break
4//This work :
5int a = 23;
6std::cout << a ;
7//The console will write '23'
similar questions
queries leading to this page
cout console