Answers for "what is sigsegv error in c++"

C++
3

what is sigsegv error in 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.
Posted by: Guest on June-08-2020

Browse Popular Code Answers by Language