Posted inHome Program to enter an integer and output its 15 multiples #include <iostream.h> #include <conio.h> int main() { clrscr(); int x; cout << “Enter an ... Read More Posted by Admin May 7, 2021
Posted inHome Program to enter an integer and print if it is greater or less than 100 #include <iostream.h> #include <conio.h> void main(){ clrscr(); int x; cout << “Enter an integer ... Read More Posted by Admin May 7, 2021
Posted inHome Program to enter your age and print if you should be in grade 10 #include <iostream.h> #include <conio.h> void main() { clrscr(); int age; cout << “Enter your ... Read More Posted by Admin May 7, 2021
Posted inHome Program to enter velocity, acceleration and time and print final velocity using the formula : v = u + a * t #include <iostream.h> #include <conio.h> void main() { clrscr(); int v,u,a,t; cout << “Enter the ... Read More Posted by Admin May 7, 2021
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