hey guys ...can u pls tell me why we use # in c++ programming language???
Answers
Answered by
1
Hola!
It is used to distinguish lines which need preprocessing before actual compilation begins.
# is a pre- processor directive.Any line which begins with # is replaced/omitted with other piece of code and then that code is compiled.
For example when preprocessor encounters a line
# include <stdio.h>
it replaces that line with all the text inside 'stdio.h'.
Remember you can mark it as brainliest if you want to....
It is used to distinguish lines which need preprocessing before actual compilation begins.
# is a pre- processor directive.Any line which begins with # is replaced/omitted with other piece of code and then that code is compiled.
For example when preprocessor encounters a line
# include <stdio.h>
it replaces that line with all the text inside 'stdio.h'.
Remember you can mark it as brainliest if you want to....
Nobita678:
Read again...
Similar questions