Hello World issue

#include
Sometimes the code does not run if we don’t put this line after
#include

Hey saurabh,
#include is a c++ preprocessor that does some pre-processing before actually compiling the program. some major library functions and other useful codes are added by this. if you want to read more about #include and other preprocessors you can visit - https://www.geeksforgeeks.org/cc-preprocessors/

1 Like