+ 3
It means standart. If you write it: using namespace std; int main(){ cout<< "Hello!"; //You can use cout like that } If you don't write: int main(){ int x; std::cout<< "Hello!"; //You need to add std like that std::cin>> x; }
20th Nov 2017, 3:41 PM
Mustafa K.
Mustafa K. - avatar