INDEGREE OUTDEGREE & TOTAL DEGREE OF VERTEX IN GRAPH
INDEGREE OUTDEGREE TOTAL DEGREE OF VERTEX IN GRAPH //graph //indegree outdegree and total degree #include < stdio.h > int main () { int a [ 10 ][ 10 ], i , j , in , out , total , n ; printf ( " plz enter the no of vertices: " ); scanf ( " %d " , & n ); for ( i = 0 ; i < n ; i ++ ) { for ( j = 0 ; j < n ; j ++ ) { a [ i ][ j ] = 0 ; if ( i != j ) { printf ( " is edge between %d and %d : " , i + 1 , j + 1 ); scanf ( " %d " , & a [ i ][ j ])...