Currently the below code gives me a warning when i try to compile it:
int z; char *w;
w = &z;
How can i cast &z properly so that w stores the pointer to z's address?
Try:
w = (char*) &z;
Don't forget that generally casting pointers in C is a bad idea. Sure, there are some times when it is the right thing to do, but we can't see exactly what you're doing here. In most cases there is a better, more portable way to do whatever it is which you are aiming at here.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With