strlen: Returns the length of the given byte string not including null terminator;
char s[]="help";
strlen(s) should return 4.
sizeof: Returns the length of the given byte string, include null terminator;
char s[]="help";
sizeof(s) should return 5.