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:
c
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