+ 9
Why we use # with include in c++ ?
In every header files like #include<iostream>.
1 Answer
+ 6
# symbol is used to specify the line which is imported or included before compilation of the program.
These lines are called preprocessor directives.
In every header files like #include<iostream>.