/in/foo.c: In function 'main':
/in/foo.c:13:17: error: 'temo' undeclared (first use in this function); did you mean 'temp'?
13 | temo/=10;
| ^~~~
| temp
/in/foo.c:13:17: note: each undeclared identifier is reported only once for each function it appears in
/in/foo.c:14:24: error: expected ';' before '\U0000ff1b'
14 | count++;
| ^~
| ;
/in/foo.c:25:25: error: expected ',' or ';' before 'for'
25 | for(int i=0;i<count;i++)
| ^~~
/in/foo.c:25:37: error: 'i' undeclared (first use in this function)
25 | for(int i=0;i<count;i++)
| ^
/in/foo.c:25:48: error: expected ';' before ')' token
25 | for(int i=0;i<count;i++)
| ^
| ;
/in/foo.c:25:48: error: expected statement before ')' token
/in/foo.c:31:1: error: expected declaration or statement at end of input
31 | }
| ^