type conversion

Posted by gcc on Stack Overflow See other posts from Stack Overflow or by gcc
Published on 2010-04-29T00:05:03Z Indexed on 2010/04/29 0:07 UTC
Read the original article Hit count: 251

Filed under:

why i couldnot make type conversion

char *p; int l=65;

these two didnot work ...why???

(int *)p=&l;

or

p=&((char) l);

© Stack Overflow or respective owner

Related posts about c