Skip to content

Instantly share code, notes, and snippets.

View sashuu69's full-sized avatar
🇮🇳
At Bangalore

Sashwat K sashuu69

🇮🇳
At Bangalore
View GitHub Profile
@sashuu69
sashuu69 / magicmat.c
Created January 31, 2018 05:10
Magic Square game for 2 players
#include<stdio.h>
struct game
{
int arr[10][10];
int cnt;
int score;
}game[2];
void main()
{
int n,i,j,k,r,c,ele,ch,diag1=0,diag2=0,row=0,col=0,flag=0;