填空题

以下程序运行后输出的结果是______。
void main()

char c; int n=100;
float f=10; double x;
x=f*=n/=(c=50);
printf("%/d %f\n",n,x);

【参考答案】

2 20.000000