有如下程序
#include <stdio.h>
main() {
char *msg = "Hello";
int x = 012;
printf("%s,X=%d.\n", msg, x+1);
}
程序运行后的输出结果是( )
He,X=13.
Hello,X=11.
HelX=121.
Hello,X=013.