Why does “noreturn” function return?
The function specifiers in C are a hint to the compiler, the degree of acceptance is implementation defined. First of all, _Noreturn function specifier (or, noreturn, using <stdnoreturn.h>) is a hint to the compiler about a theoretical promise made by the programmer that this function will never return. Based on this promise, compiler can make … Read more