what is the use of ‘return 0’ in C [duplicate]

It returns a number to the environment that started it… Every process begins with a set of arguments and returns an int indicating success or failure

see So what does “return 0” actually mean?

Leave a Comment