c语言指针问题,小白求解答。想让table[3]输出的是0x61,为啥结果是0x610x61呢?

2025-05-13 21:36:20
推荐回答(1个)
回答1:

printf("%#x",table[3]);改成printf("%#x\n",table[3]);试试