Monday, 3 December 2018

Sunday, 2 December 2018

Saturday, 1 December 2018

Commets in C++ program

Commets in C++ program
Comments and their syntax in C++ Each C++ statement is terminated by a symbol named semicolon(;) which is called statement terminator.In C++, the separation between statement is specified with this ending semicolon (;) at the end of each statement. It does not matter to write more...

Friday, 30 November 2018

Thursday, 29 November 2018

preprocessor directive in c++

preprocessor directive in c++
Preprocessor directives (#include, #define) A preprocessor is a collection of special statements which are executed before the compilation process. Almost every C++ program contains a preprocessor directive.The #include  preprocessor directives is commonly used to insert header file with extension ‘.h’. These header files are already stored in computer in include directory. In the above program, two #include directives have been used,   #include<iostream.h> ...

Wednesday, 28 November 2018

what is header files and reserved words

what is header files and reserved words
a.Header files Header files also known as include files, are standard library files that have  an extension of (.h) and which are used to hold declaration for other files. Consider the following program: // header file example #include<iostream.h> Int main() { cout<<”Hello,world!”<<endl; return 0; } Output of the program Hello,world! This program prints the string “Hello, world” to the screen using cout. However, this program nev-er defines cout, so how does the compiler know about the...