classes in c++

Classes In C++ -:  A class is a way to bind the data and its associated function together. It allows the data to be hidden. If necessary from external use. When defining a class we are creating a new abstract data type that we can be treated like any other built in data type. Normally … Read more

functions in c++

Introduction -: We know that function play an important role in C program development. Dividing a program into function is one of the major principle of top down structured programming. Other advantage of function is that it is possible to reduce the size of a program by calling and using them at different place in … Read more

operator in c++

Operator In C++ programming Language-: C++ also  support a rich set of built in operator we have already used several of them such as equal to add(+)Minus(-)  multiplication(*) and division(/) operator is a symbol that tells the computer to perform certain mathematics or logical manipulation. operators are used in program to manipulate data and variables. … Read more

data types in c++

Data Types in C++ -: Data types define the type of data a variable can store for an example an integer variable store integer data and  a character type variable store character data. In other words we can say that the data type store the variable value. In  the C++ programming has 3 type of data … Read more

tokens in c++

Tokens in C++-:  The token is the smallest individual units in a  program. In other words we can say that the smallest unit in the program called tokens. In the C++ programming language  token has the following types Keywords Identifiers Constant String  Operator  Keywords in C++ -: The keywords implemented specific C++ language features. They are … Read more

structure in c++

Structure in C++ -:  In the c++ programming language structure has four section . These section may be placed in separate code file and then complied independently or jointly. As like..   It is a common practice to organize a program into three separate files. The class declaration are placed in a header file and … Read more

introduction of c++

Introduction of C ++-: C + + is an object oriented programming language it was developed by Bjarne Stroustrup at AT & T Bell Laboratories in  Murray Hill ,New Jersey ,USA ,in the early 1980s . Stroustrup,an admiral of simula67 and strong supporter of C,  Wanted to combine the best of both the language and … Read more