请大家帮我纠正这个编程的错误地方 谢谢
#include<stdio.h>#include<math.h>
main( )
{float a,n,p,q,s;
scanf("%f%f%f%f",&a&n&p&s);
s=a*pow(1+p,n)-a;
printf("利息s=%f",s);
scanf("%f",&q);
s=s*(1-q);
printf("扣款后利息s=%f",s);
getch( );
return o;
}
错误 noname.c 5: 非法指针运算在 main 函数中