Computer Science, asked by samiya6103, 11 months ago

Write a program to accept a no. devide the no ny 7. display the remainder after devision

Answers

Answered by navsrijan121
0
#include (stdio.h)
#include (stdlib.h)

int main()
{
int a,b;

printf("Enter a no. =);
scanf("%d",&a);

b= a÷7;

printf("Your answer is = %d",b );

}












HOPE IT HELPS!
Similar questions