1 2 3 4 5 6 7 8
#include <stdio.h> int main() { printf("%c\n", "ABCDEFG"[4]); printf("%c\n", 4["ABCDEFG"]); return 0; }