+ 2
What is the significance and use of # symbol in c++ and what does it stands for .
the # symbol used in #include<iostream> what is # here
2 Answers
+ 18
https://www.sololearn.com/learn/CPlusPlus/1603/
Also you can see the comments in the lesson
+ 1
The # symbol indicates preprocessor directives. The preprocessor modifies the source file before handling it to the compiler. You usually use them for macros or including other files