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> | |
| #define size 9 | |
| int adj_mat[size][size]; | |
| int vis[size]; | |
| struct queue1 | |
| { | |
| int a[size]; | |
| int front, rear; | |
| } q1; |
NewerOlder