What is the difference between return0 and getch in C programming?
In C, any function that is declared with void, for example void main() can not return a value. However, functions that are declared with int, float or charMUST return a value. return 0 and getch() are two different things in C programming: 2. getch() is a function that reads a single character from the keyboard without waiting for the user to […]