Wednesday 14 February 2018

Mine Sweeper Game in C

Mine Sweeper Game in c

Minesweeper is a single-player puzzle video game. The objective of the game is to clear a rectangular board containing hidden "mines" or bombs without detonating any of them, with help from clues about the number of neighboring mines in each field. The game originates from the 1960s, and has been written for many computing platforms in use today. It has many variations and offshoots.

SOURCE CODE

//Program password =Bhavesh

#include<conio.h>
#include<stdio.h>
#include<stdlib.h>

Saturday 3 February 2018