我有以下代码:
#include <stdio.h> int main() { printf("%c","ACEGIK"[3] - 1); return 0; }
我知道结果是F。
[3] -1 是什么意思?
c arrays string
arrays ×1
c ×1
string ×1