Game of life

No.13044355 ViewReplyOriginalReport
I have an interesting project coming up, and i figured i'd ask if any of you have any advice. I'm not asking for help, i just wanted to talk about it.
So here is the project. in C, write code to simulate the spread of life. In a matrix, 1 represents life, 0 represents no life. In every loop, every cell next to a 1 has a certaine chance to become a 1 (it is not specified what happenes to the 1 in the original cell). There are some aditional stuff, like "make space loop around", so what goes out the left side, comes in the right side.
Also i have to write code in R to display my resaults form every loop.
Ps.: this is my first semester of programing, it is in no way my area of experties, sorry for being baby bitch teir.