#include "graphio.h" /*------------------------------------------------------------------- Fill in your name and student number here. For assignments where group work is allowed fill in each group member, otherwise set to "" for no such member. -------------------------------------------------------------------*/ char *name[2][2] = { {"name", "Student #"}, {"", ""}, }; int my_code(); /* Sample main */ int main(int argc, char *argv[]) { int ret_val; if(parse_args(argc, argv)) return -1; /* Your routine goes here */ ret_val = my_code(); /* Write output graph if required, otherwise rem this out */ write_graph(file_out, graph, n); return ret_val; } /*------------------------------------------------------------------- Your code goes here. At this point the graph is in the array "graph" The value returned by this routine will be returned by the program. -------------------------------------------------------------------*/ int my_code() { int ret_val = 0; return ret_val; }