Serial with strings and char

notsolowki:
can you please tell me what the ==0) at the end of "if (strcmp(receivedChars, "my string of text") == 0)"
is about

If the two strings match then strcmp() will return 0

See http://www.cplusplus.com/reference/cstring/strcmp/