Main.c: In function 'main':
Main.c:6:12: warning: comparison between pointer and integer
6 | while(n!="EOF"){
| ^~
Main.c:6:12: warning: comparison with string literal results in unspecified behavior [-Waddress]
Main.c:8:13: error: 'result' undeclared (first use in this function); did you mean 'reuslt'?
8 | result+=i;
| ^~~~~~
| reuslt
Main.c:8:13: note: each undeclared identifier is reported only once for each function it appears in
Main.c:4:10: warning: unused variable 'reuslt' [-Wunused-variable]
4 | long reuslt=0;
| ^~~~~~