| Problem | minimum |
|---|---|
| User | BigBackAdrino |
| Submission Time | 2026-06-19 15:53:51 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
minimum.cpp:6:32: error: use of parameter outside function body before ‘]’ token
6 | int findMin (int N, int array[N]){
| ^
minimum.cpp: In function ‘int findMin(...)’:
minimum.cpp:7:12: error: missing template arguments before ‘,’ token
7 | sort(array, array+N);
| ^
minimum.cpp:7:19: error: missing template arguments before ‘+’ token
7 | sort(array, array+N);
| ^
minimum.cpp:7:20: error: ‘N’ was not declared in this scope
7 | sort(array, array+N);
| ^
minimum.cpp:8:14: error: missing template arguments before ‘[’ token
8 | cout<< array[N-1];
| ^