LISTING PROGRAM
#include <stdio.h>
#include <conio.h>
#include <stdlib.h>
int
q[20],top=-1,front=-1,rear=-1,a[20][20],vis[20],stack[20];
int del();
void add(int item);
void bfs(int s, int n);
void dfs(int s, int n);
void push(int item);
int pop();
main()
{


