The correct answer is char* is a pointer to memory, whose granularity is one byte.
A pointer p that points to a block containing the string is created when you type char *p = "some string". With the command char p[] = "some string," a character array containing literals is created. employing the unary operator (&), which yields the address of the variable, to assign a pointer to a variable's address. employing the unary operator (*), which returns the value of the variable located at the location supplied by its operand, to access the value contained in the address. All nonstatic member function calls get the "this" reference as a secret parameter, and all nonstatic functions have access to it as a local variable inside their bodies.
To learn more about byte click the link below:
brainly.com/question/15750749
#SPJ4