#include<iostream> here is iostream header mandetory ? and is there any meaning to these signs "<>" ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

#include<iostream> here is iostream header mandetory ? and is there any meaning to these signs "<>" ?

30th Jul 2016, 2:46 AM
Mahantesh AT
Mahantesh AT - avatar
2 Answers
0
iostream is a header, << statement/string Example #include <iostream> \\this is a heaer using namespace std; int main() this is in every C++ programm should start with main() Than your functions and blocks like { cout << "Me:Hi, how are you\nThem:We good, thanks" << endl; return 0; }
30th Jul 2016, 6:01 AM
denis
denis - avatar
0
Yes header is madatory, depends on functions you wanna use, otherwise you will get scope error <> header signs
30th Jul 2016, 6:02 AM
denis
denis - avatar