C String Functions
C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …
Function Pointer in C++
Introduction : Function Pointer in C++ Pointers: In function pointer in c++ are the variables that consist of addresses of …
C++ Switch statement (With Examples)
C++ Switch statement C++ Switch statement – A switch case statement generally evaluates any given expression and based on that …
C++ Break Statement (With Examples)
C++ Break Statement The c++ break statement can be considered to be a loop control statement that can be used …
C++ Pointer and Array (with Examples)
C++ Pointer And Array Arrays Arrays store multiple values of the same data type in a single variable, instead of …
JavaScript SetTimeout() Function
The function or set of code gets executed when the time expires using JavaScript setTimeout() Method. A timer ID is …
Javascript Callback Function Example
Introduction : Function sequence: JavaScript functions are generally executed in the sequence in which they are called. Not in the …
Type Conversion in C++
Introduction: Type Conversion in C++ In C++ programming language, we are provided with the functionality where we can convert any …
C++ Variables and Literals
Introduction: C++ Variables,Literals A memory location is generally given a variable name . Generally data is stored in them. The …
C++ Data Types
C++ Data Types decide the type and size of a variable. We often need to use various variables to store …
Functions in C++
Introduction : Functions in C++ A block of code which comes into execution when it is called is a function. …
C++ Function Types
A Block of code which runs after it’s called is termed as c++ function. Function in C++ is a group …
c++ Basic Input And Output With Examples
C++ Basic Input And Output We will see that the C++ standard libraries provided us with an extensive set of …
Function Overloading in C++
Introduction : Function Overloading in C++ In C++ two or more functions are allows to have the same name but …
C strings
INTRODUCTION : c strings A collection of characters in a linear sequence can be called a string. It is treated …
C++ Switch Case
Introduction: In C++ switch case statement generally evaluates any given expression and based on that value it is supposed to …
Multidimensional Array in C
A multidimensional array in c can also be considered as an array of arrays that are supposed to store homogeneous …
Storage Classes in C++
Introduction : A storage classes in c++ is generally used to define the scope (visibility) and life-time of the particular …
continue statement in c++
Introduction : Continue statement in c++ can be considered to be a loop that controls the statement that is supposed …