/*pgm to find minimum spanning tree using kruskal's algorithm*/ #include<stdio.h> #define INF 1000 char vertex[10]; int wght[10][10];