Main.c: In function 'append':
Main.c:12:23: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
12 | if (o >= 2 && (o & o - 1) == 0)
| ~~^~~
Main.c: In function 'main':
Main.c:32:21: warning: unused variable 'j' [-Wunused-variable]
32 | int n, u, v, h, i, j;
| ^
Main.c:34:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
34 | scanf("%d%d%d", &n, &u, &v), u--, v--;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~
Main.c:41:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
41 | scanf("%d%d%s", &i, &j, s), i--, j--;
| ^~~~~~~~~~~~~~~~~~~~~~~~~~