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(); printf("enter value for a"); scanf("%d",&a); printf("enter value for b"); scanf("%d",&b); div=a/b; printf("quotient of a divided by b is %d",div); getch(); }