Previous | Home | Next |
C++ program have variable ,function ,objects, other component. These are the C++ program parts:
Hello Program in C++
#include <iostream> //include header file using namespace Beg; int main() { cout << "Hello world.\n";//C++ statement return 0; }
Header File:This function is include the header files. Header files have predefined functions and variables or resources that are to be shared between parts of different program.
Comment: comment is used for documentation and start with
Multiple line comments start with
In namespace a block of code written here .and also through namespace reduce the collision.
main is a function. Execution begins with the main(). This tells that which type of variable return .
count is a predefined object that represent the standard output Stream. return is the function . It return a variable or value when call this function.
Previous | Home | Next |