This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #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; |
NewerOlder