I know char *x means a pointer to char, but I'm confused about what (char*) x means.
|
|
|
It's a cast. You are instructing the compiler to treat For some built-in types, the compiler may perform a meaningful conversion, e.g. converting a |
|||||||||||||
|
|
The cast operator converts the value of the operand to the type between |
|||
|
|
|
Actually, If you already have a variable, such as |
|||
|
|
|
The expression The results of a cast can be very different depending on the operand and target types: For example, you can use casts to round floating-point values to integer precision, get rid of qualifiers like However, not all possible casts result in legal values - eg, casting pointers can violate aliasing and alignment rules. Converting a (valid) non-function pointer to |
|||
|
|
|
declaration of a variable called "x" of type char:
declaration of a variable called "x" which is a pointer to a char:
cast of something that is not a char to type char:
|
|||||
|
