scrivener.cpp: In function 'void dbg()':
scrivener.cpp:14:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
14 | for (int i = 0; i < commands; i++) cout << ch[i] << ' '; cout << endl;
| ^~~
scrivener.cpp:14:62: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
14 | for (int i = 0; i < commands; i++) cout << ch[i] << ' '; cout << endl;
| ^~~~
scrivener.cpp:15:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
15 | for (int i = 0; i < commands; i++) cout << ok[i] << ' '; cout << endl;
| ^~~
scrivener.cpp:15:62: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
15 | for (int i = 0; i < commands; i++) cout << ok[i] << ' '; cout << endl;
| ^~~~
scrivener.cpp: In function 'char GetLetter(int)':
scrivener.cpp:63:12: warning: 'ans' may be used uninitialized in this function [-Wmaybe-uninitialized]
63 | return ans;
| ^~~