cats.c: In function 'count':
cats.c:4:34: warning: suggest parentheses around '-' in operand of '&' [-Wparentheses]
4 | return b == 0 ? 0 : count(b & b - 1) + 1;
| ~~^~~
cats.c: In function 'main':
cats.c:10:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
10 | scanf("%d", &t);
| ^~~~~~~~~~~~~~~
cats.c:14:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
14 | scanf("%lld%lld%lld", &k, &l, &n), k--, d = (l + n * 2) / (n * 2);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~