top of page
Search


Write C++ Program to Add two numbers.
#include <iostream> using namespace std; int main() { int x, y; int sum; cout<<"Adding Two Numbers"<<endl; cout << "Enter First number:...
The Tech Platform
May 8, 2021


Write C++ program to Multiply two Numbers.
#include <iostream> using namespace std; int main() { int x, y; int sum; cout<<"Multiplying Two Numbers"<<endl; cout << "Enter First...
The Tech Platform
May 8, 2021

Write C++ Program to Reverse the Digits of given Integer.
#include <iostream> using namespace std; int reverse_int(int x) { int res = 0; while(x != 0) { int pop = x % 10; x = x / 10; int...
The Tech Platform
May 8, 2021

Write a program to print numbers from 1 to 100?
Below is the program to print the Numbers from 1 to 100 in C++, C, Python3, C#, PHP and JavaScript. C++ // C++ program to How will you...
The Tech Platform
Apr 21, 2021

C Programming Language
C is a procedural programming language. It was initially developed by Dennis Ritchie in the year 1972. It was mainly developed as a...
The Tech Platform
Apr 9, 2021


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

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


What is Buffer Overflow?
Buffer overflow is also known as Buffer overrun, is a state of the computer where an application tries to store more data in the buffer...
The Tech Platform
Mar 26, 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
bottom of page