C Program to find remainder of two number

C Program to find remainder of two number

#include<stdio.h>

int main()

{

int a,b,rem;

printf("Enter any two numbers");

scanf("%d%d",&a,&b);

rem=a%b;

printf("Reminder is %d",rem);

    return 0;

}