0
What is #include
c++
5 Answers
- 1
Program which translate programming language to language which computer understand and can run.
+ 1
# is a pre processor directive
means
process before compilation..
pre processor run those statement start with #...
https://www.sololearn.com/discuss/1196486/?ref=app
0
#Include includes libraries to your program. Libraries are files with functions/consts/classes...
For example #include <iostream> gives you access to get input from user and print something on the screen. (functions like cin and cout are implemented in iostream library).
0
what is compiler?
0
prince - the compiler is a program that translates code from a given language to machine code