#include #include int const ROWS=12; int const COLS=12; char const LIFE='o'; char const DEATH='.'; struct individual { int row, col; char condition; int neighbors; } ; void readFile(char filename[], struct individual board[ROWS][COLS]) { int row, col; char eoln, newline; FILE *infile; infile=fopen(filename, "r"); for(row=0; row