what is sigsegv error in c++

C++
A SIGSEGV is an error(signal) caused by an invalid memory
reference or a segmentation fault.
You are probably trying to access an array element out of bounds or 
trying to use too much memory.
Source

Also in C++: