A string can be checked if it is empty using the following code
if (strlen (string) = 0)
But, instead of using strlen, how to determine if a string is empty using the first character of the string
if (strlen (string) = 0)
But, instead of using strlen, how to determine if a string is empty using the first character of the string
Comment