Tag: exception handling

  • C Language Exception Handling

    Error handling It is common for a program to manage non standard situation, like things does not work as expected, or time is expired on operation, or everything else. Typically C (as any old language) do manage such situation with error code returned, possible errno setted and a table of string that explain errno (sys_errlist).…