/in/foo.c: In function 'main':
/in/foo.c:12:13: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'long int *' [-Wformat=]
scanf("%d%d%d",&N,&a,&b);
^
/in/foo.c:12:15: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'long int *' [-Wformat=]
scanf("%d%d%d",&N,&a,&b);
^
/in/foo.c:12:17: warning: format '%d' expects argument of type 'int *', but argument 4 has type 'long int *' [-Wformat=]
scanf("%d%d%d",&N,&a,&b);
^
/in/foo.c:16:17: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'long int *' [-Wformat=]
scanf("%d",&temp);
^
/in/foo.c:35:14: warning: format '%d' expects argument of type 'int', but argument 2 has type 'long int' [-Wformat=]
printf("%d",count);
^