Find Quotient And Remainder : C Program Find Quotient And Remainder : C Program #include<stdio.h> #include<conio.h> void main() { int div,dis,q,r; printf("Enter Dividend And Divisor"); scanf("%d%d",&div,&dis); q=div/dis; r=div%dis; printf("Remainder Is %d \n Quotient is %d",q,r); getch; } 26 Oct 2015
0 comments:
Post a Comment
Click to see the code!
To insert emoticon you must added at least one space before the code.