#include <stdio.h>
#include <conio.h>
#include <dos.h>
#include <time.h>
void Wait(unsigned int seconds)
{
unsigned int RetTime = time(0) + seconds;
while (time(0) < RetTime);
}
void main()
{
int i;
system("COLOR 74");
printf("HEY U ;)\n");
printf("JUST WANTED TO SAY THIS VALENTINES DAY..\n");
system("pause");
for (i = 1; i <= 190; i++)
{
printf(" I LOVE YOU \3 ");
Wait(1);
}
// system("pause");
}
To embed this project on your website, copy the following code and paste it into your website's HTML: