stub.cpp: In function ‘int {anonymous}::sz(const C&)’:
stub.cpp:27:52: error: ‘size’ is not a member of ‘std’; did you mean ‘size_t’?
27 | template<class C> int sz(const C& c) { return std::size(c); }
| ^~~~
| size_t
stub.cpp: In function ‘void {anonymous}::write_int_array(const int*, int)’:
stub.cpp:70:13: warning: init-statement in selection statements only available with ‘-std=c++17’ or ‘-std=gnu++17’
70 | if (int ret = fwrite(arr, sizeof(int), len, fout); len != ret) {
| ^~~
stub.cpp: In function ‘void {anonymous}::read_int_array(int*, int)’:
stub.cpp:105:13: warning: init-statement in selection statements only available with ‘-std=c++17’ or ‘-std=gnu++17’
105 | if (int ret = fread(arr, sizeof(int), len, fin); len != ret) {
| ^~~