const char *string = "hello there";
Serial.print (string[1]);
I would expect to see 'e'.
I'd be upset if I saw anything else.
const char *string = "hello there";
Serial.print (string[1]);
I would expect to see 'e'.
I'd be upset if I saw anything else.