Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

c exit

#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);
}
Source by www.tutorialspoint.com #
 
PREVIOUS NEXT
Tagged: #exit
ADD COMMENT
Topic
Name
2+6 =