Concepts of OOPs in C++ Concepts of OOPs in C++ There are some basic concepts of OOPs : Class Object Encapsulation Abstraction Polymorphism Inheritance […]
Read moreAuthor: Astha Gaur
OOPs Concepts in C ++
OOPs Concepts in C++ OOPs Concepts in C++ OOPs stands for Object Oriented Programming . An object oriented programming language uses object in its […]
Read moreProgram To Find Area and Perimeter of Rectangle
Program To Find Area and Perimeter of Rectangle Program To Find Area and Perimeter of Rectangle #include<iostream> using namespace std; int areaRectangle(int a, int […]
Read moreProgram To Find Simple Interest
Program To Find Simple Interest Program To Find Simple Interest #include<iostream> using namespace std; int main() { Β Β float P , R , T […]
Read moreCheck 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 more
Recent Comments