top of page
Search


Write a C Program to Find the factorial of a Number using Recursive Function.
Factorial, in mathematics, the product of all positive integers less than or equal to a given positive integer and denoted by that...
The Tech Platform
Apr 8, 2021


Pure functions in C++
Declare a function to be side-effect free. C++ is not a functional programming language. Functions causing side-effects are the norm with...
The Tech Platform
Mar 29, 2021

Multi-Threading in C++
A multithreaded program contains two or more parts that can run concurrently. ... Each part of such a program is called a thread, and...
The Tech Platform
Mar 26, 2021

How to write an STL compatible container
The Standard Template Library (STL) is a (language built in) library for C++. This means, that C++ Standard defines everything in STL and...
The Tech Platform
Mar 19, 2021

What is an Allocator?
“An Allocator is a handle to a heap”. Alexander Stepanov (the father of STL) came up with the idea of Allocator and the motivation was to...
The Tech Platform
Mar 19, 2021
Comments in C++
The C++ comments are statements that are not executed by the compiler. The comments in C++ programming can be used to provide explanation...
The Tech Platform
Mar 11, 2021


Goto Statement in C++
The goto statement is also known as jump statement. It is used to transfer control to the other part of the program. It unconditionally...
The Tech Platform
Mar 11, 2021


Switch Statement in C++
The switch statement allows us to execute one code block among many alternatives. You can do the same thing with the if...else..if...
The Tech Platform
Mar 11, 2021


Continue Statement in C++
The C++ continue statement is used to continue loop. It continues the current flow of the program and skips the remaining code at...
The Tech Platform
Mar 11, 2021


Break Statement in C++
The C++ break is used to break loop or switch statement. It breaks the current flow of the program at the given condition. In case of...
The Tech Platform
Mar 11, 2021
bottom of page