+ 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

4th Mar 2018, 11:12 AM
Manan Jethwani
Manan Jethwani - avatar
2 Answers
+ 18
https://www.sololearn.com/learn/CPlusPlus/1603/ Also you can see the comments in the lesson
4th Mar 2018, 11:31 AM
Frost
Frost - avatar
+ 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
4th Mar 2018, 1:45 PM
Marco
Marco - avatar