21.+FAQ+(Skeleton+of+C+++Program+)+ (2)
21.+FAQ+(Skeleton+of+C+++Program+)+ (2)
Why return 0;
what is the meaning or use of return 0; here and what will happen if we
don't use return 0 in our code.
Why std
why we have to write std with cout. simply writing cout it will not
execute?
C++ supports namespaces. All built-in functions and object are included
in namespace.
There is a video available on namespaces, in ending sections.
What is #include.
# is used as preprocessor directive.
#include will ask the compiler to include the header file.
there are separate videos on preprocessor directives in later sections.