tower.c: In function 'main':
tower.c:18:27: error: 'int_cmp' undeclared (first use in this function)
18 | qsort(b, n, sizeof(int), int_cmp);
| ^~~~~~~
tower.c:18:27: note: each undeclared identifier is reported only once for each function it appears in
tower.c:27:11: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long long int' [-Wformat=]
27 | printf("%d\n", sol);
| ~^ ~~~
| | |
| int long long int
| %lld
tower.c:11:2: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
11 | scanf("%d %d\n", &n, &d);
| ^~~~~~~~~~~~~~~~~~~~~~~~
tower.c:15:3: warning: ignoring return value of 'scanf' declared with attribute 'warn_unused_result' [-Wunused-result]
15 | scanf("%d", b + i);
| ^~~~~~~~~~~~~~~~~~