Hello, OnlineGDB Q&A section lets you put your programming query to fellow community users. Asking a solution for whole assignment is strictly not allowed. You may ask for help where you are stuck. Try to add as much information as possible so that fellow users can know about your problem statement easily.

what is the meaning of the sentence that "the programme is finished with the exit code 37?

+1 vote
asked Aug 30, 2019 by anonymous

1 Answer

+1 vote
answered Feb 7, 2025 by gordd (260 points)
Usually a running programme has a means to permanently return control to the system that started it--"terminate" or "exit". Often, there is a way to set a small integer for the system's benefit while leaving (For example, in  java: System.exit(37); ) A system user, or agent, could then use this to better understand why the programme was written to terminate.
Welcome to OnlineGDB Q&A, where you can ask questions related to programming and OnlineGDB IDE and receive answers from other members of the community.
...