Program To Find Simple Interest Program To Find Simple Interest #include<iostream> using namespace std; int main() { Β Β float P , R , T […]
Read moreCategory: c++
Check the Number is Palindrome or not
Check the Number is Palindrome or not Check the Number is Palindrome or not #include <iostream> using namespace std; int main() { int n, […]
Read moreProgram to Reverse a Number in C++
Program to Reverse a Number in C++ Program to Reverse a Number in C++ #include <stdio.h> using namespace std; int main() { int n, […]
Read moreFind the Sum of all Elements in Given Array
Find the Sum of all Elements in Given Array Find the Sum of all Elements in Given Array include <iostream> using namespace std; int […]
Read moreC++ Program to Add Two Given Numbers
C++ Program to Add Two Given Numbers C++ Program to Add Two Given Numbers #include <iostream> using namespace std; int main() { int input1, […]
Read morePrint Floyd’s Triangle in C++
Print Floyd’s Triangle in C++ Print Floyd’s Triangle in C++ FLOYD’S TRIANGLE #include <iostream> using namespace std; int main() { int n , a […]
Read moreFind the largest number among three number in C++
Find the largest number among three number in C++ Find the largest number among three number in C++ #include <iostream> using namespace std; int […]
Read moreFind largest element of an array in C++
Find largest element of an array in C++ Find largest element of an array in C++ #include <iostream> using namespace std; int main() { […]
Read moreHourglass pattern printing in cpp
# Hourglass Pattern in C++ // C++ Code for pattern Printing #include <iostream>using namespace std; // Function to demonstrate printing pattern void pypart(int n) […]
Read moreBinary Search in C++
Binary Search in C++ Binary Search in C++ #include <iostream> #include <algorithm> using namespace std; int binary_search(int arr[], int size, int target) { int […]
Read more
Recent Comments