For these declarations, which choice shows four equivalent ways to assign the character "y" in the string to a char variable c?
char buff[50] = "strings as arrays of characters are fun!"
char *str = buff+11;
char c;
For these declarations, which choice shows four equivalent ways to assign the character "y" in the string to a char variable c?
char buff[50] = "strings as arrays of characters are fun!"
char *str = buff+11;
char c;