Re: Segmentation Faults
for the lazy ppl who don't want to visit the second link and read the info there:
Segmentation fault means that the program uses area in the memory that isn't allocated to it. Most of the time it happens when using arrays and don't do bounds cheching (meaning you try to read the 5th element in an array of 4 ;-) )
Core Dumped (they have seen way too much star trek) means that the when the program chrashes, all memory used by the program (+ all other usefull info like from CPU) is written to a file that can be examined later (gdb can be used for that matter)
Antharax