Ternary Operator in C++ Admin July 06, 2017 Ternary Operator in C++ If any operator is used on three operands or variable is known as Ternary Operator . It can be represented with... Continue Reading
Expression Evaluation in C++ Admin July 06, 2017 Expression Evaluation in C++ In c language expression evaluation is mainly depends on priority and associativity. Priority: This rep... Continue Reading
Types of Error in C++ Admin July 06, 2017 Types of Error in C++ Error is a abnormal condition whenever it occurs execution of the program is stopped these are mainly classified ... Continue Reading
Structure of C++ Program Admin July 06, 2017 Structure of C++ Program Every C++ program can be written with the following syntax. Syntax #include <headerfilename.h> --&g... Continue Reading
cout and cin in C++ Admin July 06, 2017 cout and cin in C++ cout<<: cout is used for print message on screen Example #include <iostream.h> #include <coni... Continue Reading
main() Function in C++ Admin July 06, 2017 main() Function in C++ main() function is the entry point of any C++ program. It is the point at which execution of program is started.... Continue Reading