Question: Use include for visual studio 2015 & the functions that are said to be used. Add comments to explain NO conio or java or anything

Use include for visual studio 2015 & the functions that are said to be used.

Add comments to explain

NO conio or java or anything else

Use include for visual studio 2015 & the functions that are said

to be used. Add comments to explain NO conio or java or

2 The Game of Life (45 points) Submit your pseudo-code for this problem Imagine a world of organisms living in a two-dimensional cell grid of size n m Each organism can only occupy a single cell. Each ce, except those at the boundaries (the edge of the world), has exactly eight neighboring cells (up, down, left, right, and four diagonals). The cells at the boundaries have less than eight neighboring cells. The world evolves from one generation to the other using the following rules: 1. Any organism with fewer than two neighbors (a neighbor is an organism that lives in a neighboring cell) dies (out of loneliness). 2. Any organism with more than three live neighbors dies (overcrowding) 3. Any organism with two or three live neighbors lives on to the next generation 4. Any vacant cell with exactly three live neighbors becomes occupied by a new organism (birth) Write a C program that plays the game of life. Your program should 1. Read an initial world configuration from a file world.txt. The world is of size 10x10. 2. Evolve the world to the next generation. 3. Display the old and new world generation on screen. 4. Ask the user if he/she wants to continue evolution to the next generation 5. Display a message if the entire world is extinct You should ignore the cells at the boundary of the world since the do not have enough neighbors to play the game. For a modular design, you should use the following functions: void read world(FILE *inp, int [SIZE): // reads a world from a file to array x void print-world(int [SIZE); // prints world stored in array x on screen int evolve(int [SIZE], int row, int col); // returns the evolved cell value for cell x1r0w/lcoll void copy world(int x ISIZE, int y[ I[SIZE];/copies world in x to y int extinct (intx SIZED;//returns a zero if all organisms are extinct

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!