Tech Study

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more

Function Pointer in C++

Introduction : Function Pointer in C++ Pointers: In function pointer in c++ are the variables that consist of addresses of …

Read more

C++ Switch statement (With Examples)

C++ Switch statement  C++ Switch statement – A switch case statement generally evaluates any given expression and based on that …

Read more

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 …

Read more

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 …

Read more

JavaScript SetTimeout() Function

The function or set of code gets executed when the time expires using JavaScript setTimeout() Method. A timer ID is …

Read more

Javascript Callback Function Example

Introduction : Function sequence: JavaScript functions are generally executed in the sequence in which they are called. Not in the …

Read more

Type Conversion in C++

Introduction: Type Conversion in C++  In C++ programming language, we are provided with the functionality where we can convert any …

Read more

C++ Variables and Literals

Introduction: C++ Variables,Literals  A memory location is generally given a variable name . Generally data is stored in them. The …

Read more

C++ Data Types

C++ Data Types decide the type and size of a variable. We often need to use various variables to store …

Read more

Functions in C++

Introduction : Functions in C++ A block of code which comes into execution when it is called is a function. …

Read more

C++ Function Types

A Block of code which runs after it’s called is termed as c++ function. Function in C++ is a group …

Read more

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 …

Read more

Function Overloading in C++

Introduction : Function Overloading in C++ In C++ two or more functions are allows to have the same name but …

Read more

C strings

INTRODUCTION : c strings A collection of characters in a linear sequence can be called a string. It is treated …

Read more

C++ Switch Case

Introduction:  In C++ switch case statement generally evaluates any given expression and based on that value it is supposed to …

Read more

Multidimensional Array in C

A multidimensional array in c can also be considered as an array of arrays that are supposed to store homogeneous …

Read more

Storage Classes in C++

Introduction : A storage classes in c++ is generally used to define the scope (visibility) and life-time of the particular …

Read more

continue statement in c++

Introduction : Continue statement in c++ can be considered to be a loop that controls the statement that is supposed …

Read more