/in/foo.c: In function 'main':
/in/foo.c:5:10: warning: format '%d' expects argument of type 'int *', but argument 2 has type 'float *' [-Wformat=]
scanf("%d %d %d %d",&a,&m,&b,&n);
^
/in/foo.c:5:13: warning: format '%d' expects argument of type 'int *', but argument 3 has type 'float *' [-Wformat=]
scanf("%d %d %d %d",&a,&m,&b,&n);
^
/in/foo.c:5:16: warning: format '%d' expects argument of type 'int *', but argument 4 has type 'float *' [-Wformat=]
scanf("%d %d %d %d",&a,&m,&b,&n);
^
/in/foo.c:5:19: warning: format '%d' expects argument of type 'int *', but argument 5 has type 'float *' [-Wformat=]
scanf("%d %d %d %d",&a,&m,&b,&n);
^