#include <stdio.h> #include <stdlib.h> int main () { printf("Start of the program.... "); printf("Exiting the program.... "); exit(0); printf("End of the program.... "); return(0); }