I have a string,
char* str = \"HELLO\"
If I wanted to get just the E from that how would I do that?
E
You would do:
char c = str[1];
Or even:
char c = "Hello"[1];
edit: updated to find the "E".