dreaming.cpp:2:9: warning: missing terminating " character
2 | #include"dreaming.h
| ^
dreaming.cpp:2:9: error: #include expects "FILENAME" or <FILENAME>
2 | #include"dreaming.h
| ^~~~~~~~~~~
dreaming.cpp:34:16: error: 'intN' was not declared in this scope; did you mean 'int'?
34 | int travelTime(intN,intM,intL,intA[],intB[],intT[]){
| ^~~~
| int
dreaming.cpp:34:21: error: 'intM' was not declared in this scope; did you mean 'int'?
34 | int travelTime(intN,intM,intL,intA[],intB[],intT[]){
| ^~~~
| int
dreaming.cpp:34:26: error: 'intL' was not declared in this scope; did you mean 'int'?
34 | int travelTime(intN,intM,intL,intA[],intB[],intT[]){
| ^~~~
| int
dreaming.cpp:34:31: error: 'intA' was not declared in this scope; did you mean 'int'?
34 | int travelTime(intN,intM,intL,intA[],intB[],intT[]){
| ^~~~
| int
dreaming.cpp:34:36: error: expected primary-expression before ']' token
34 | int travelTime(intN,intM,intL,intA[],intB[],intT[]){
| ^
dreaming.cpp:34:38: error: 'intB' was not declared in this scope; did you mean 'int'?
34 | int travelTime(intN,intM,intL,intA[],intB[],intT[]){
| ^~~~
| int
dreaming.cpp:34:43: error: expected primary-expression before ']' token
34 | int travelTime(intN,intM,intL,intA[],intB[],intT[]){
| ^
dreaming.cpp:34:45: error: 'intT' was not declared in this scope; did you mean 'int'?
34 | int travelTime(intN,intM,intL,intA[],intB[],intT[]){
| ^~~~
| int
dreaming.cpp:34:50: error: expected primary-expression before ']' token
34 | int travelTime(intN,intM,intL,intA[],intB[],intT[]){
| ^
dreaming.cpp:34:51: error: expression list treated as compound expression in initializer [-fpermissive]
34 | int travelTime(intN,intM,intL,intA[],intB[],intT[]){
| ^
dreaming.cpp: In function 'int dfs(int, int)':
dreaming.cpp:22:1: warning: control reaches end of non-void function [-Wreturn-type]
22 | }
| ^