Wrirte a program to print the remainder of two integers.

#include<stdio.h>

#include<conio.h>

int main()

{

clrscr();

int a,b,rem;

printf(“Enter the integers: “);

scanf(“%d%d”,&a,&b);

rem=a%b;

printf(“%d”,rem);

getch();

return 0;

}