Tech Study

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more

If-else statement in java

Introduction: If-else statement in java Java if statement can generally used for checking the condition. It is supposed to check …

Read more

Python Numbers With Examples

Python Numbers In python, the number data types are used to store numeric values. Python supports three numeric data types: …

Read more

Python datetime (With Examples)

Python datetime Python has an inbuilt module known as datetime module to basically deal with the operations on dates and …

Read more

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

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

This method is provided by Javascript which guarantees the execution of a set of code after a certain time limit. …

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