C Functions Interview Questions and Answers For Freshers Part-3
9. Is using exit() the same as using return? No. The exit() function is used to exit your program and return control to the operating system. The return statement is used to return from a function and return control to…
Read More