#include <stdio.h>

int main() {
    int count = 1;

    printf("The first 10 multiples of 5 are: \n");

    do {
        printf("%d\n", 5 * count);
        count++;
    } while (count <= 10);

    return 0;
}

Embed on website

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