top of page
Search

Write a program to print a hollow square star pattern with a diagonal in C++.
The program works by iterating over each row and column of the pattern and checking if the current position is on the edge of the...
The Tech Platform
Mar 21, 2023

Write a Program to convert degree into radian using C++
What is Radian? The radian is the unit of angle in the International System of Units and is the standard unit of angular measure used in...
The Tech Platform
Oct 18, 2022

Write a Program to convert the temperature in C++
Algorithm: Temperature Conversion This algorithm inputs a temperature in Fahrenheit and converts into centigrade. Start Input Temperature...
The Tech Platform
Jun 27, 2022

Object Oriented Programming Language? Features and Characteristics
Object Oriented programming (OOP) is a programming paradigm that relies on the concept of classes and objects. It is used to structure a...
The Tech Platform
Apr 15, 2022

Injecting .Net Assembly Into .Net Application
As demonstration purpose, i have written the following app. As you already got what the code does (a simple msgbox says “Hello World from...
The Tech Platform
Dec 20, 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
Dec 13, 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 30, 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 22, 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 15, 2021
bottom of page