如果a = 3且b = 5,这意味着什么?
printf(&a["Ya!Hello! how is this? %s\n"], &b["junk/super"]);
Run Code Online (Sandbox Code Playgroud)
我知道这arr[4]
意味着*(arr+4)
所以我需要知道表达式"hi there"
意味着什么?
编辑 - 问题可能更清晰:
当一个字符串用作数组下标时它传达了什么值?
为什么输出上面Hello! how is this? super
?