Why does a main function without a return statement return value 12?

后端 未结 4 1267
北恋
北恋 2020-12-03 07:42

I have written a program that prints a table. I have not included the return syntax in the main function, but still whenever I type echo $? it displays 12.

My source

相关标签:
4条回答
  • 2020-12-03 08:33

    As swegi says, it's undefined behavior. As Steve Jessop et al say, it's an unspecified value until C89, and specified in C99 (the observed behavior is non-conformant to C99)

    What actually happens in most environments is that the return value from the last printf is left in the register used for return values.

    So it'll be 11 for n == 0, 12 if n is one digit, 14 for two digit n, 16 for three digit n, etc.

    0 讨论(0)
  • 2020-12-03 08:41

    Answering because all the existing answers say that it's undefined behaviour, which is not true, so I have nothing I can upvote.

    In C89 (thanks to pmg for the reference to a draft standard), 5.1.2.2.3:

    A return from the initial call to the main function is equivalent to calling the exit function with the value returned by the main function as its argument. If the } that terminates the main function is reached, the termination status returned to the host environment is unspecified.

    In C99, quoting from n1256, 5.1.2.2.3:

    If the return type of the main function is a type compatible with int, a return from the initial call to the main function is equivalent to calling the exit function with the value returned by the main function as its argument; reaching the } that terminates the main function returns a value of 0. If the return type is not compatible with int, the termination status returned to the host environment is unspecified.

    So, it's not "undefined behaviour": it behaves as if the main function returns, but in C89 the value returned is not specified by the standard. For your example program, on your implementation, the value returned appears to consistently be 12, presumably for the reason Ben Voigt says. Since you're on linux, it's probably not a big change to compile your code as C99 (or anyway, compile it using gcc's almost-compliant C99 mode).

    For any function that returns a value, other than main, it is undefined behaviour, unless the caller doesn't use the return value (n1256, 6.9.1/12):

    If the } that terminates a function is reached, and the value of the function call is used by the caller, the behavior is undefined.

    I'm not sure whether the initial call to main should be mentioned as excluded from this general rule. It doesn't need to be: from the POV of the standard, that call doesn't have a caller, so I think that the value of the function call is not "used by the caller", even though it becomes the termination status for the program.

    0 讨论(0)
  • Your program is causing undefined behavior by not returning anything when it should, thus the caller will generally grab what ever the value of the eax register(on x86, rax on x64) is at the time of the procedure return, which is generally rubbish from the last use of eax(by functions returning values or just register based vars), in this case its probably the amount of char's that printf has written to the stdout buffer

    0 讨论(0)
  • 2020-12-03 08:45

    If you're at all familiar with assembly language, you may recall that the "return value" of a function is passed through the EAX register.

    In this case, the return value is being read from EAX. Which, in this case, happens to be 12.

    However, you're not explicitly setting this value, it's simply an artifact from the rest of the code (or perhaps just chance).

    As has been said, this is definitely undefined behavior. If you are simply curious why this results, please consider this explanation.

    But do not, under any circumstances, attempt to intentionally use this value as anything meaningful.

    0 讨论(0)
提交回复
热议问题