top of page
Search


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


Loop Statement in C++
Loops are an essential part of programming as they allow us to repeat a block of code until a specific condition is met. In C...
The Tech Platform
Mar 11, 2021

If Else Statement in C++
IF The if statement evaluates the test expression inside the parenthesis (). If the test expression is evaluated to true, statements...
The Tech Platform
Mar 11, 2021

Detect Noise Level Audio Decibels in MXChip Azure IoT DevKit
Playing with Azure IoT DevKit MXChip is always fun, the device has many capabilities. For the past few days, I have been working with...
The Tech Platform
Feb 9, 2021

LINUX – INSIDE THE BUILD PROCESS
The Executable and Linking Format (ELF) is the file format standard for executables, objects, shared libraries and core dumps in...
The Tech Platform
Jan 31, 2021


LINUX – HANDLING SIGNALS IN A MULTITHREADED APPLICATION
Signals are very useful feature in linux to send notification from one process to another and from the kernel to the process. Signals are...
The Tech Platform
Jan 31, 2021
County Money in Greedy Algorithm
Given a value V, if we want to make a change for V Rs, and we have an infinite supply of each of the denominations in Indian currency,...
The Tech Platform
Dec 6, 2020

Heap Sort Algorithm
In this tutorial, you will learn how heap sort algorithm works. Also, you will find working examples of heap sort in C, C++, Java and...
The Tech Platform
Nov 2, 2020
bottom of page