Unaligned access error

1999-04-11 Thread Dan Jue
) I'm using classes with 'g++ -Wall' in my makefile for all. p5.x is my executable. I also get a nice little segmentation fault after a couple iterations of this (each with slightly different hex addresses). Thank you Best Regards, * Dan Jue, CMSC UMCP

Re: array filling problem

1999-04-10 Thread Dan Jue
that you cannot access a[0][4] directly because wouldn't that cause an out-of-bound subscript error? So you would instead do some manual pointer arithmetic to get that address, right? Thanx for any response. Best Regards, * Dan Jue, CMSC UMCP *Linux '99

RE: prompt when 25 lines..

1998-09-19 Thread Dan Jue
On Sat, 19 Sep 1998, subbaraom wrote: On Thu, 17 Sep 1998, Glynn Clements wrote: - if(n==25 || n==50) - { - printf("hit enter for the next page..\n"); - getchar(); - } - } - - but it didn't work, has anyone got a solution to my little problem? - -In what way