What's wrong with these pointer initialization

Posted by skydoor on Stack Overflow See other posts from Stack Overflow or by skydoor
Published on 2010-04-10T13:19:05Z Indexed on 2010/04/10 13:23 UTC
Read the original article Hit count: 296

Filed under:
char * a=0;
int * b=0;
cout<<a<<a+1;
cout<<b<<b+1;

what's wrong with it

© Stack Overflow or respective owner

Related posts about c++