#include <stdio.h>

int main()
{
    int x;
    printf("Enter the number you wnt to check: ");
    scanf("%i",&x);
    printf("%i \n",x);
    printf("-------------------------\n");
    if (x % 7 == 0)
    {printf("The Given number is a multiple of 7");}
    else 
    {printf("The Given number is not a 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: