when i run my program in c++ i have no error in compile but for run i have this message
"unhandled exception in mnas5.exe.:0xc00000FD,stack over flow"
please explain it to me
Stack overflow can occure if you have very deep recursive function call. This will cause stack to overflow. Run the program under debugger, and see where it fails.