Skip to content

Instantly share code, notes, and snippets.

View rushike's full-sized avatar
🏠
Working from home

rushike rushike

🏠
Working from home
View GitHub Profile
@rushike
rushike / .c
Created August 6, 2017 14:05
Graph-DFS-Adjcent Matrix
#include<stdio.h>
int a[10][10],b2[10][10],s[10],v[10],w[10];
int n,b=-1,r,st=0;
void print(int n);
void getMat(int n);
int push(int n);
int pop();
void traverse();
void initial(int n);