#include <stdio.h>

int main()
{
    int i;
    do {
        printf("enter the number:\n");
        scanf("%d",&i);
        
    } while (i!=100);
    printf("you entered 100 as input");
}

Embed on website

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