network.cpp: In function 'void findRoute(int, int, int)':
network.cpp:14:14: error: 'ping' was not declared in this scope
int dist = ping(a, b);
^~~~
network.cpp:14:14: note: suggested alternative: 'uint'
int dist = ping(a, b);
^~~~
uint
network.cpp:23:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i = 1; i < p[d].size(); i++) {
~~^~~~~~~~~~~~~
network.cpp:27:11: error: 'travelTo' was not declared in this scope
travelTo(a);
^~~~~~~~
network.cpp:36:7: error: 'travelTo' was not declared in this scope
travelTo(a);
^~~~~~~~
network.cpp:40:3: error: 'travelTo' was not declared in this scope
travelTo(b);
^~~~~~~~
grader.c: In function 'int main()':
grader.c:48:11: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf ("%d%d%d%d", &N, &a, &b, &M);
~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
grader.c:51:18: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &distance[u][v]);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~