Skip to content

Instantly share code, notes, and snippets.

@kaldas
Created February 18, 2011 01:51
Show Gist options
  • Select an option

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

Select an option

Save kaldas/833117 to your computer and use it in GitHub Desktop.
/* Estrutura de Dados e Algoritmos 1
Prof. Marcelo Vasconcelos - GEC2010N
Aluno: Rodrigo Caldas de Moura Duarte */
#include "stdio.h"
#include "stdlib.h"
int prmet(int z)
{
return prmet((7 * z % 11));
}
int main()
{
prmet(1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment