Showing posts with label Division Of two Numbers. Show all posts
Showing posts with label Division Of two Numbers. Show all posts

Sunday, 15 January 2012

Program To Find Divison Of Two Numbers In C++

#include<iostream.h>
#include<conio.h>
 main()
 {
 clrscr();
 int a,b,c;
 cout<<"Enter first number=";
 cin>>a;
 cout<<"Enter second number=";
 cin>>b;
 cout<<c;
 getch();
 }