#include<stdio.h>
int main() 
{
int num;
printf("ENTER THE NUMBER:\n");
scanf("%d",&num);
if(num%7==0)
{
printf("THE NUMBER IS MULTIPLE OF 7");
}
else if(num%7!=0)
{ 
printf("THE NUMBER IS NOT MULTIPLE OF 7");
}  
return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: