/in/lab4.c: In function 'divide':
/in/lab4.c:88:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (i=0;i<strlen(save);i++)
^
/in/lab4.c: In function 'main':
/in/lab4.c:143:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(i=0,j=0;i<strlen(fsave);i++)
^
/in/lab4.c:161:19: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
while(z=strstr(fsave2,"\\n"))
^
/in/lab4.c:172:16: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
if(x=strstr(y+1,",")) //read the value behind the ',', which indicates the latter part in ("array",value)
^
/in/lab4.c:180:25: warning: format not a string literal and no format arguments [-Wformat-security]
else printf(fsave2);
^~~~~~