Segmentation Faults
Otherwise known as segfaults. Occur when you try to access memory that you
don't have permission to.
Results in one of the least-informative error
messages when using gcc.
It is often more useful to be told the line on
which the segfault occurs.
GDB is a tool which you can use to debug C
code, which tells you what line the segfault
- ccurred on.