C++ PROGRAM Following is simple C++ Program that will reverse a string w…
Read moreFIND SMALLEST & LARGEST IN ARRAY C++ code :) #include<iostream> using namespace std; int main() { double a[100]; int min,n,i,loc=1;…
Read moreFinding Maximum number in Array using POINTER. Following C Program is created to find maximum number in array using pointer. C++ PROGRAM :) #include…
Read moreUse Of SIZEOF() Operator In C/C++. #include<iostream> using namespace std; int main() { int a; char ch; float m; double n; l…
Read moreThis is a C++ program to count number of occurrences of any character in a string. In this program we have accepted a string and character whose occ…
Read moreADDITION OF TWO MATRIX This is simple C++ program to add two matrices . Before adding two matrices we have to know that if order of both matrices is…
Read morePERMUTATION AND COMBINATION C++ CODE :) #include<iostream> using namespace std; long factorial(int A); long find_ncr(int x, int y); long fin…
Read morePalindrome Number :- A palindrome number is a such type of number that if we reversed that number the we get same number again. …
Read moreFloyd’s Triangle. The Floyd’s Triangle is Triangle of number which look…
Read moreFibonacci series is special type of series which start's with 0 and 1 and in which every member in series is sum of it's previous two numbers…
Read more