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 …
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 …
Python Numbers With Examples
Python Numbers In python, the number data types are used to store numeric values. Python supports three numeric data types: …
Python datetime (With Examples)
Python datetime Python has an inbuilt module known as datetime module to basically deal with the operations on dates and …
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.. …
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
This method is provided by Javascript which guarantees the execution of a set of code after a certain time limit. …
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 …