Pointers and constants
Posted
by viswanathan
on Stack Overflow
See other posts from Stack Overflow
or by viswanathan
Published on 2010-05-08T05:10:15Z
Indexed on
2010/05/08
5:18 UTC
Read the original article
Hit count: 245
Are these two the same
char const *pcc2 = "hello";
const char *pcc2 = "hello";
and how can this be valid
const double & val = 66.6;
© Stack Overflow or respective owner