Posts by Mark Herrmann • 1 point
2 posts
-
0
votes1
answer104
viewsA: Segmentation fault when returning to main C++
SOLVED THE PROBLEM: So... it seems that the problem was I used STATUS ** (pointer to pointer), it was mixing my pointers and leaving them confused so I did a new struct: struct { ESTADO * arr; int…
-
-2
votes1
answer104
viewsQ: Segmentation fault when returning to main C++
I am getting this error, I know it is an improper memory access error but I can’t find the error! it finishes running the wayValido(...) and when it will return from the main it crashes and gives…