单项选择题

以下程序的输出结果是( )。
#include <stdio.h>
main()
int k=17;
printf("%d,%o,%x\n",k,k,k);

A.17,021,0x11
B.17,17,17
C.17,0x11,021
D.17,21,11