char *c = (char *) p; you are telling the compiler to take the value of p (not the value pointed by p), cast it to a pointer to a char, which is ...
確定! 回上一頁