pointer to a stringchar *p="Hello",*l="cello"; *p=*k;//or p[0]='c';it crashes again cout<<p; the program rashes why?? ...
dereferencing thanks it's really helpfull
dereferencingint *p,*v; *p=5; cout<<*p; this program crashes at run time whereas int *p,*t,i=5; p=&i; *t=*p; cou...
This user does not accept Private Messages