Skip to content

Instantly share code, notes, and snippets.

@kaldas
Created October 9, 2010 23:24
Show Gist options
  • Select an option

  • Save kaldas/618718 to your computer and use it in GitHub Desktop.

Select an option

Save kaldas/618718 to your computer and use it in GitHub Desktop.
/* ~rcaldasmd~ */
#include <stdio.h>
int main()
{
int first = 1, current = 1, cnt;
for(cnt = 1;cnt <= 5;cnt++)
current = (first + current) * current;
fprintf(stdout,"Senha: %i\n",current);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment