赞题库-背景图
单项选择题

有以下程序:
#include <stdio.h>
main( )
{
int a=3;
a+=a-=a*a;
printf("%d\n",a);
}
程序的输出结果是______。

A.0
B.9
C.3
D.-12