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 [ … ]
Category: C++
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 [ … ]
Loop Control Statement
Loop control statements in c are used to perform looping operations until the given condition is true. Control comes out of the loop statements once condition becomes false. Loops are [ … ]
Condition Or Branching Statements
Decision making is about deciding the order of execution of statements based on certain conditions. C++ handles decision making by supporting the following statements.1. Simple if statement2. if…..else statement3. Nested [ … ]
Control Statements in C++
When we run a program, the statement are executed in the order in which they appear in the program. Also each statement is executed only once. But in many cases [ … ]
Type Conversion
An expression may involve variables and constants of either of same data type or different data types. However, when an expression consist of mixed data types then they are converted [ … ]
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 [ … ]
Data Types of C++
TheData type is a keyword used to identify type of data. It is used to storing the input of the program into the main memory (RAM) of the computer by [ … ]