drvca.cpp: In function 'bool provera()':
drvca.cpp:18:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int i=2;i<b.size();i++){
~^~~~~~~~~
drvca.cpp: In function 'void ispis()':
drvca.cpp:24:27: warning: format '%d' expects argument of type 'int', but argument 2 has type 'std::vector<int>::size_type {aka long unsigned int}' [-Wformat=]
printf("%d\n",a.size());
~~~~~~~~^
drvca.cpp:26:29: warning: format '%d' expects argument of type 'int', but argument 2 has type 'std::vector<int>::size_type {aka long unsigned int}' [-Wformat=]
printf("\n%d\n",b.size());
~~~~~~~~^
drvca.cpp: In function 'int main()':
drvca.cpp:34:10: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
scanf("%d", &n);
~~~~~^~~~~~~~~~
drvca.cpp:35:30: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
for(int i=0;i<n;i++)scanf("%d",visine+i);
~~~~~^~~~~~~~~~~~~~~