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 »

class in java

Java Class -: A class is a group of related object .We know that the  Java is an object oriented programming language .Like any other programming language java support many class in java. All file in a Java program defines a class. Any code in a Java program is inside a class. There is nothing like… Read More »

inheritance in java

Inheritance in Java-: Inheritance is the feature of object oriented programming system. Inheritance is the process by which object of one class acquire the properties of another class. It support the concept of hierarchical classification. For example the bird ‘robin’ is a part of the class ‘flying bird’ which is again part of  class ‘bird’.… Read More »

array in java

Array in java-: Arrays are  the collection of same data type in a large value called the array.  Array are the part of data structure in Java. Data structures are tools that allow us to store and access sequences of information rather than using individual variables. Variables are great when we have one specific piece… Read More »

switch case in java

Switch case in java statement-: Like any other programming Java support switch case statement in java. we have seen that when one of the many alternative is to be selected we can use an if statement to control the selection .Some time complexity of such a program increasing dramatically when the number of alternative increases.… Read More »

java if else

Java If else statement-: Like any other language In java If ..else statement is a powerful statement. It is a condition statement and decision making statement. If is a Java keyword and it is  followed by two condition between which we put the statement to be evaluated. If Java determines that the statement we write between… Read More »