input/code.c: In function 'main':
input/code.c:3:11: warning: implicit declaration of function 'pow' [-Wimplicit-function-declaration]
3 | #define N pow(10,9)+7
| ^~~
input/code.c:16:29: note: in expansion of macro 'N'
16 | count[x] %= N;
| ^
input/code.c:2:1: note: include '<math.h>' or provide a declaration of 'pow'
1 | #include <stdio.h>
+++ |+#include <math.h>
2 |
input/code.c:3:11: warning: incompatible implicit declaration of built-in function 'pow' [-Wbuiltin-declaration-mismatch]
3 | #define N pow(10,9)+7
| ^~~
input/code.c:16:29: note: in expansion of macro 'N'
16 | count[x] %= N;
| ^
input/code.c:3:11: note: include '<math.h>' or provide a declaration of 'pow'
3 | #define N pow(10,9)+7
| ^~~
input/code.c:16:29: note: in expansion of macro 'N'
16 | count[x] %= N;
|...