This is a conditional statement used in C to check condition or to control the flow of execution of statements. This is also called as ‘decision making statement or control statement.’ The execution of a whole program is done in one direction only. If statement is used to validate only one condition i.e only one […]
Author: Mohit Arora
Decision making is one of the most important concepts of computer programming. As the name suggests “Decision Making” , we means to state that we will be making certain decisions to carry out different operations. These decisions making strategies are same as we come across in our daily life. But here we will be using […]
Storage class defined for a variable defines the accessibility and longevity of the variable. The accessibility of the variable relates to the portion of the program that has access to the variable. The longevity of the variable refers to the length of time or time span the variable exists within the program.In other words, A […]
The main motto of evolution of C++ programming was to add object orientation to the C programming language that was missing in traditional C programming language. Classes are the central feature of C++ that supports object-oriented programming and are often called user-defined types.
Operators are special symbols used for specific purposes. An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. The various types of operators are: Arithmetical operators Assignment operators Increment/Decrement Operators Logical operators Relational operator Conditional operators Bitwise Operators Special operators
A token is a group of characters that logically belong together. The programmer can write a program by using tokens. Various C tokens used are: Keywords Identifiers Literals Punctuators Operators.