C program to calculate Quotient and Remainder
Question: Write a program which ask user to input two integers then check and print how many times the first integer can be divided by the seconf integer and what will be the reminder?// Online C compiler to run C program online
#include <stdio.h>
void main()
{
int a,b,c,d;
printf("Enter two integers ");
scanf("%d %d",&a,&b);
c=a/b;
d=a%b;
printf("%d can be divided by %d in %d times and %d will be left \n",a,b,c,d);
}
Categories: c programming