I found in the supported code an example of accessing the array n [a], where n is the index and a is the array. In a simple example, it looks like
#include <stdio.h> void main() { char hello[] = "hello"; puts(&0[hello]); }
This line & 0 [hello] - what does it mean?