填空题

下列程序的输出结果是______。
int t(int x,int y,int cp,int dp)
cp=x% y+y*y;
dp=x+x-y*y;

main()
im a=4,b=3,c=9,d=8;
t(a,b,c,d);
printf("%d%d\n",c,d);

【参考答案】

98