/* Program 1.7 */ /* functions without any parameters(also known as procedures) */ /* first example */ /* Used header files */ #include #include /* Main function - our program */ int main(void) { printf("Press any key to proceed\n"); getch(); /* wait for keypress */ printf("We are in the middle of the program\n"); getch(); printf("Press any key to proceed\n"); getch(); }