Back To C++ Basic Index
// program to input two numbers and display their quotient (division) #include
#include
void main() { int a,b; int div; clrscr(); cout<<"enter value for a"; cin>>a; cout<<"enter value for b"; cin>>b; div=a/b; cout<<"quotient of a divided by b is "<