Pular para o conteúdo principal

C, strcpy, char, repeat, because I'm happy, sring.h

#include
#include
int main()
{
    system("color 1f");
    char message[10];
    int count,i;
    strcpy(message,"because I'm Happy!!");
    printf("Repeat how many times?");
    scanf("%d",&count);
    for(i=0;i
    printf("%3d-%s\n",i,message);
    system("pause");
}

Comentários