// strangeLife.c 
// Simulazione del mondo chiamato LIFE concepito John H. Conway 
#include "strangeLife.h"   // usare "  "  per il vostro file
#define MAX_EPOCHE 400

int main()
{

  int epoche;   // le epoche segnano il tempo che passa
  int a[N_MAX][N_MAX];   // ecco
	
  riempiMatrice(a);  // la PROCEDURA riempie la matrice di cellule 
  stampa_Matrice(a);	

  for (epoche=1; epoche < MAX_EPOCHE; epoche++)
  {
    aggiorna_Matrice(a); 		
    stampa_Matrice(a);	
    
    printf("-->Press a key  (control C to stop)");
    getchar();
  } 

  exit(0);
}