Posted inHome Program to enter two integers and find their sum and average #include <iostream.h> #include <iostream.h> #include <conio.h> void main() { clrscr(); int x,y,sum; float average; cout ... Read More Posted by Admin May 7, 2021
Posted inHome C++ Program to find the sum, difference, product and quotient of two integers #include <iostream.h> #include <conio.h> void main() { clrscr(); int x = 10; int y = ... Read More Posted by Admin May 7, 2021
Posted inHome C++ Program to output an integer, a floating point number and a character #include <iostream.h> #include <conio.h> void main() { clrscr(); int x = 10; float y ... Read More Posted by Admin May 7, 2021
Posted inHome C++ program which adds two integers #include <iostream.h> main() { // A simple C++ program int x, y, sum; cout << ... Read More Posted by Admin May 7, 2021
Posted inHome Simple Program Book Entry Using structure Variable in C++ Programming #include<iostream.h> #include<stdio.h> struct books { char name[20],author[20]; }a[50]; int main() { int i,n; cout<<“No Of ... Read More Posted by Admin May 7, 2021
Posted inHome Simple Addition in C++ Binary Operator Overloading Using C++ Programming // Header Files #include<iostream> #include<conio.h> //Standard namespace declaration using namespace std; class overloading { int ... Read More Posted by Admin May 7, 2021
Posted inHome Simple Example Program for Function Find Smallest Number In C++ #include<iostream> #include<conio.h> using namespace std; // Simple Function int compare( int a, int b ) ... Read More Posted by Admin May 7, 2021
Posted inHome Factorial Using Loop Example Program In C++ Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn aboutFactorial ... Read More Posted by Admin May 7, 2021
Posted inHome Factorial Using Function Example Hello friends, Welcome to your Techgsr.co blog. And today in this article we will learn about ... Read More Posted by Admin May 7, 2021
Posted inHome Program In C++ Factorial Using Recursion Example #include<iostream> #include<conio.h> using namespace std; //Function long factorial(int); int main() { // Variable Declaration ... Read More Posted by Admin May 7, 2021