network.cpp:1:2: error: stray '#' in program
1 | =#include<bits/stdc++.h>
| ^
network.cpp:2:20: warning: extra tokens at end of #include directive
2 | #include"network.h"=
| ^
network.cpp:1:1: error: expected unqualified-id before '=' token
1 | =#include<bits/stdc++.h>
| ^
network.cpp: In function 'void findRoute(int, int, int)':
network.cpp:7:9: error: 'memset' was not declared in this scope
7 | memset(to,-1,sizeof to);
| ^~~~~~
network.cpp:3:1: note: 'memset' is defined in header '<cstring>'; did you forget to '#include <cstring>'?
2 | #include"network.h"=
+++ |+#include <cstring>
3 | #define exoworldgd cin.tie(0)->sync_with_stdio(0),cout.tie(0)
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]
48 | 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]
51 | scanf("%d", &distance[u][v]);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~