[Solved] Can’t Find Seg Fault in C Code


Valgrind and GDB are very useful.

The most previous one that I used was GDB- I like it because it showed me the exact line number that the Segmentation Fault was on.

Here are some resources that can guide you on using GDB:

GDB Tutorial 1

GDB Tutorial 2

If you still cannot figure out how to use GDB with these tutorials, there are tons on Google! Just search debugging Segmentation Faults with GDB!

Good luck 🙂

solved Can’t Find Seg Fault in C Code