#include <stdio.h>
int main() {
int N;
printf("Enter the number of times you want to print your name: ");
scanf("%d", &N);
if (N <= 0) {
printf("Please enter a positive number greater than 0.\n");
} else {
int count = 0;
do {
printf("Your Name\n");
count++;
} while (count < N);
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: