top of page
Search
The Tech Platform
Jan 28, 2022
Top Programming Languages used by Blockchain Developers
A blockchain is a distributed database that is shared among the nodes of a computer network. As a database, a blockchain stores...
The Tech Platform
Jan 25, 2022
Top 5 Programming Languages for Cyber Security
Cyber security is the application of technologies, processes and controls to protect systems, networks, programs, devices and data from...
The Tech Platform
Dec 13, 2021
How to Print All Permutations of a Given String in C, C++, JavaScript, and Python.
A permutation is a specific order in which objects can be arranged. For a string of length n, there are n! (n factorial) possible...
The Tech Platform
Nov 30, 2021
Write a C++ Program to check whether Given Number is Negative or Positive
Code: #include <iostream> using namespace std; int main() { cout << " ** Program to Check that given number is positive or negative**...
The Tech Platform
Nov 28, 2021
Write a program to print Floyd's Triangle in C++.
Floyd's Triangle Floyd's triangle is a right-angled triangular array of natural numbers. It is defined by filling the rows of the...
The Tech Platform
Nov 22, 2021
How to print size of array parameter in C++?
Example: #include <iostream> using namespace std; void findSize(int arr[]) { cout << sizeof(arr) << endl; } int main() { int a[10];...
The Tech Platform
Nov 22, 2021
Arrays in C/C++
Arrays An array is a collection of similar data items stored at contiguous memory locations and elements can be accessed randomly using...
The Tech Platform
Nov 15, 2021
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 12, 2021
TOP 10 PROGRAMMING LANGUAGES FOR MOBILE APP DEVELOPERS
These are the best programming languages for mobile app development to explore As the process of mobile app development has been evolving...
The Tech Platform
Oct 8, 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) {...
bottom of page