What is the use of "return 0;" in C programming?
Answers
Answered by
1
Explanation:
return 0 in C Programming Language: return value of the main function is considered the "Exit Status" of the application. On most operating systems returning 0 is a success status like saying "The program worked fine".
Answered by
1
Answer:
return 0 in C Programming Language: return value of the main function is considered the "Exit Status" of the application. On most operating systems returning 0 is a success status like saying "The program worked fine"
Similar questions