下述程序的输出结果是______。 #include<stdio.h> main() { enum team{Jack,Andy,Sam=10,Bob=Sam+2,Tom}; printf("%d,%d",Andy,Tom); }
A.2,13
B.1,0
C.1,13
D.1,12