how to check where the segmentation fault in c ocurs code example
Example 1: how to know where segfaut is c
gcc program.c -g
Example 2: how to know where segfaut is c
$ gdb ./a.out
(gdb) run
<segfault happens here>
(gdb) backtrace
<offending code is shown here