circle_selection.cpp:37:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main() {
^
circle_selection.cpp: In function 'int main()':
circle_selection.cpp:38:2: error: 'iota' was not declared in this scope
iota(pos, pos + N, 0);
^~~~
circle_selection.cpp:38:2: note: suggested alternative: 'int'
iota(pos, pos + N, 0);
^~~~
int
circle_selection.cpp:39:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &n);
~~~~~^~~~~~~~~~
circle_selection.cpp:41:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d %d %d", &x[i], &y[i], &r[i]);
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~