What variables are destroyed when calling exit(), based on Microsoft’s docs?
I was trying to figure out the differences between terminate()
, exit()
and abort()
, and Microsoft’s
C++ program termination documentation came up in my Google search that compares exit
vs abort
vs atexit
.
What variables are destroyed when calling exit() based on this Microsoft reference?
I was trying to figure out the differences between terminate
, exit
and abort
and the
C++ termination documentation came up in my Google search that compares exit
vs abort
vs atexit
.