Loading...

Category: C++

Jumping Statements

C++ language provides us multiple statement through which we can transfer the control anywhere in the program . There are basically 3 jumping statements: 1. goto 2. continue 3. break [ … ]

Introduction to Strings

Group of characters together called as a string. There are two primary ways in C++ language to store strings in memory. they are as string objects or as C-strings.

String Handling Functions

The C++ library has numerous functions for handling C-strings. These functions perform various test and manipulations and required that the cstring header file be included.The following are the most commonly [ … ]

Expressions of C++

A combination of variables, constants, and operators that represent a computation forms an expression. Depending upon the type of operands involved in an expression or the result obtained after evaluating [ … ]

Operators of C++

An operator is a symbol that tells the compiler to perform specific mathematical or logical operations. C++ is rich in built-in operators. They are: Arithmetic Operators Relation Operators Logical Operators [ … ]