0

What is pre-proccessor?

28th Dec 2016, 6:41 AM
원동혁
원동혁 - avatar
2 Answers
+ 2
# is a pre-processor
28th Dec 2016, 7:42 AM
Ayush Jain
Ayush Jain - avatar
+ 1
A preprocessor is a program that translate some text input into data that will be used by another program. In C/C++ the preprocessor reads the lines that start with '#' and translate the source file into source code that the C/C++ compilator will fully understand and can compile. For example #include myfile.h would be replaced by the content of the actual header file.
28th Dec 2016, 8:21 AM
ifl
ifl - avatar