Program to display filled isosceles triangle in C++

C++ Program to display filled isosceles triangle PROGRAM: #include<iostream> using namespace std; int main() { int e=1; cout<<"" Triangle Shape SHAPE ":nn"; for(int a=1;a<=5;a++) { for(int b=4;b>=a;b–) { cout<<" "; // Printing Space Here } for(int c=0;c<e;c++) { cout<<"*"; // Printing asterisk here } cout<<endl; // new line e=e+2; } }   OUTPUT: Triangle Shape * … Read more

Detect keypress and print ASCII value C++

Here we will write a program to Detect keypress and print ASCII value C++. We will use a infinite while loop until user press ESC(escape button on keyboard), user will enter a key and the program will provide the ASCII value of the input. WAP to Detect keypress and print ASCII value C++: PROGRAM: #include<iostream> #include<conio.h> … Read more

Find factorial using recursion in C++

Here we will write a C++ program to find factorial using recursion, first we will understand what are factorials of a number and how to find out the factorials of a number. Lets start with what is factorial. What is Factorial of a number: The factorial of a non-negative integer n, denoted by n!, is … Read more

Program to implement Linear Search C++

Here we will write a program to implement Linear Search C++ programming language, so first lets start with what is linear search and then we will write a program in C++ to implement Linear Search. What is Linear Search: Linear search or sequential search is a method for finding a target value within a list. … Read more