Skip to content

Instantly share code, notes, and snippets.

@kaldas
Created September 24, 2010 16:01
Show Gist options
  • Save kaldas/595601 to your computer and use it in GitHub Desktop.
Save kaldas/595601 to your computer and use it in GitHub Desktop.
/* Achei que a resposta deveria ser a altura */
#include <stdio.h>
#include <string.h>
int main()
{
int amizade = 1;
char buff[160];
strcpy(buff,"Obrigado Arthur e Deluca por serem meus amigos\n");
strcat(buff,"...quando eu mais precisei!\n");
while(amizade)
printf("%c%c%c%c%c%c%c%c%c%c%c\n",buff[3],buff[53],118,buff[19],buff[53],
buff[68],buff[3],118,buff[19],buff[3],buff[29]);
return 20;
}
/* 1990 rcaldasmd 2010 */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment