top of page
Search


Introduction to String Concatenation in C++
String Concatenation is the process of joining character strings end-to-end. For example, the concatenation of "snow" and "ball" is...

The Tech Platform
Nov 15, 2021


Write C++ Program to find the Reverse of a given number
Code: #include <iostream> #include <math.h> using namespace std; //Returns the reverse of the entered number int findReverse(int n) {...

The Tech Platform
Oct 8, 2021


Write a Program in C++ to check whether the given Number is Prime or Composite Number.
Prime Number A prime number is a number that can only be divided by itself and 1 without remainders. A prime number cannot be divided by...

The Tech Platform
Oct 7, 2021


Header Files in C/C++
A header file is a file with extension .h which contains C function declarations and macro definitions to be shared between several...

The Tech Platform
Sep 20, 2021


Top 8 Programming Languages For Game Developers
Game Developers use Programming Languages to create a game's settings and mechanics. The Choice of Programming Languages depends on...

The Tech Platform
Jul 23, 2021


Benchmarking low-level I/O: C, C++, Rust, Golang, Java, Python
Benchmarking TCP Proxies is probably the simplest case. There is no data processing, only handling incoming/outgoing connections and...

The Tech Platform
Jul 19, 2021


Difference between C++, Java and Python.
C++ C++ is a general purpose programming language and widely used now a days for competitive programming. It has imperative,...

The Tech Platform
Jul 17, 2021


How to Validate Domain Name in Go(Golang) and C/C++?
If you or any of your peers have ever been the target of a phishing attempt, you know that it can be dangerous to click on an unknown...

The Tech Platform
Jul 5, 2021


Bubble Sort Algorithm
Bubble sort, also known as a comparison sort, is a simple yet rudimentary sorting algorithm. It iterates through a list multiple times,...

The Tech Platform
Nov 2, 2020


Why Does An Abstract Class Need A Constructor?
Abstract classes, a fundamental concept in object-oriented programming, serve as blueprints for other classes, providing a structure that...

The Tech Platform
Jun 22, 2020
bottom of page