i can't understand about include please anbody know so give answer | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

i can't understand about include please anbody know so give answer

1st Jun 2020, 3:53 PM
dhananjay ojha
3 Answers
+ 3
dhananjay ojha you need a special library of functoins for input, oitput, working with time of graphics e.t.c. So libraries you call by the special word "include", correctly "#include"
1st Jun 2020, 4:23 PM
Petr
+ 3
dhananjay ojha for example #include <iostream> you need for cout and cin iostream is input and output stream :) Cout- "out" in c (output) Cin- "in" in c (input) :)))
1st Jun 2020, 4:27 PM
Petr
+ 3
#include is a way of including a standard or user-defined file in the program and is mostly written at the beginning of any C/C++ program. This directive is read by the preprocessor and orders it to insert the content of a user-defined or system header file into the following program.
1st Jun 2020, 4:42 PM
Toyin Samad Akanbi
Toyin Samad Akanbi - avatar