Serial with strings and char

UKHeliBob:
You can't compare strings like that but you can use the strcmp() function

if (strcmp(receivedChars, "my string of text") == 0)

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