C Plus Plus Programming

You can learn all c++ programming in this website easilly.

Responsive Ads Here

Adds

Monday, January 21, 2019

undefined 201

how we find vowel words

Programme: #include<iostream> using namespace std; int main() { char ch; cout<<"Enter an alphabet="; cin>>ch; { if(ch=='A'||ch=='a'||ch=='E'||ch=='e'||ch=='I'||ch=='i'||ch=='O'||ch=='o'||ch=='U'||ch=='u') cout<<ch<<":is a vowel"; else cout<<ch<<":is...
undefined 201

how to find even odd numbers

Programe #include <iostream> using namespace std; int main() { int n ; cout<<"Enter A Number="; cin>>n; { if(n%2==0) cout<<n<<":IS Even Number"; else cout<<n<<":IS odd Number"; } }...
undefined 201

how to creat Cricket Team Management System

Programe #include<iostream> #include<conio.h> #include<string> #include<iomanip> using namespace std; struct cricketer { char name[15]; int runs; int innings; int tno; float avg; }; int main() { int runs,innings,i; float avg; cricketer rec[5]; cout<<"\nEnter...
undefined 201

speed calculator

Programme #include <iostream> using namespace std; int main() { double distance,speed,time; cout<<"Enter distance in kilometer:"; cin>>distance; cout<<"Enter speed of your vehicle (Mph):"; cin>>speed; { time=distance/speed; cout<<"Time required To Reach ...
undefined 201

creat age calculator

Programme: #include<iostream> using namespace std; int main() { int n,age; cout<<"Enter Your Age:"; cin>>n; switch(n) { case 1 ...10: cout<<"Kid"; break; case 11 ...15: cout<<"childhood"; break; case 16 ...20: cout<<"Young"; ...
undefined 201

How we creat a calculator

Programme: #include<iostream> #include<conio.h> using namespace std; int main() { int a,b,result; char option,n; do { cout<<"What Opration you to do want"<<endl; cout<<"+.Addition"<<endl; cout<<"-.Subtraction"<<endl; cout<<"*.Multiply"<<endl; ...
undefined 201

How to creat array in c++

Arrays An Array is a group of consecutive memory location with same name and type. Simple variable is a single memory location with a unique name and type.But an array is a collection of different adjacant memory location. All these memory locations have one collective name and type.The Memory locations in the array...
Page 1 of 212Next