请帮我解答原因
这是求回文数的,找不出为什么出现这个错误:“error C2143: syntax error : missing ';' before 'type'”求教,O(∩_∩)O谢谢
# include<stdio.h>
int f(int n)
{
int t;
int m=0;
while (t)
{ m=m*10+t%10;
t/=10;
}
if (n==m)
printf("1\n");
else
printf("0\n");
}
int main (void)
{
int x,y;
scanf ("%d",&x);
int f(int x);
}