Bruno.cpp: In function 'void Bruno(int, int, std::vector<int>)':
Bruno.cpp:16:18: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
16 | while (A.size() < N) A.push_back(0);
| ~~~~~~~~~^~~
Bruno.cpp: At global scope:
Bruno.cpp:35:1: error: 'i' does not name a type
35 | i
| ^
Bruno.cpp:10:6: warning: 'int {anonymous}::FunctionExample(int)' defined but not used [-Wunused-function]
10 | int FunctionExample(int P) { return 1 - P; }
| ^~~~~~~~~~~~~~~
Bruno.cpp:8:6: warning: '{anonymous}::variable_example' defined but not used [-Wunused-variable]
8 | int variable_example = 0;
| ^~~~~~~~~~~~~~~~