How do you end a program in c?
All C programs have a main() function, and when the end of that
is reached, the program terminates, so to end a program, just type
the ending curly bracket '}' to match the opening one of the main()
function.
It is considered good practice to end a program with the
statement 'return 0;' before the last curly bracket, to indicate
that the program terminated normally.