Hey can anyone help me with this? i dont know why my code isnt getting compiled properly and its not gettin executed
Run this first to get rid of that warning:
cl triplex.cpp /EHsc
then just type
triplex
thank you⌠also, could you help me with the line that says âexception handled, but undefined semanticsâ ?
That is the same warning that requires you to type /EHsc at the end of the compile command. It is a little advanced so hereâs a brief summary: some of C++'s standard headers (such as iostream), include try/catch statements, but your program does not use exceptions (a way to handle special circumstances), therefore it would not call any destructors to âdestroyâ any objects your program creates. No need to go any further right now, but if you are still curious then read this from Microsoft docs
okay thank you so much
Cheers : )
Mark the message that helped you as a solution, so that the lovely moderators wonât see this as an unsolved issue.
sure
This topic was automatically closed 24 hours after the last reply. New replies are no longer allowed.