Since 5/6/2012 9:44:21 AM, fire.vulcan has written 1 articles and participated in 1 conversations. fire.vulcan signature: fire.vulcan
fire.vulcan's articles:
Items(2) /1
string vs const int memory alloc634 (4/12/2005 10:10:41 AM) comp.lang.c Hi Why is that int *p = 12; core dumps & not char *p = "some_str"; Shouldnt the int also be written in the data segment?? Ad Varma ... fire
c++ object copying bitcopying vs references230 (4/12/2005 10:05:16 AM) comp.lang.c++ Hi Had this doubt really irking me for some time. For some obj of type say Obj. void fn(Obj o){ // do somethng } main { Obj ob; fn(ob); // no COPY C'TOR d'fined } Doubt -> Wh... fire