#include <stdio.h>
#include <stdlib.h>
  
// Driver Code
int main(void)
{
    printf("START");
  
    exit(1);//or exit(0) both are same
    // The program is terminated here
  
    // This line is not printed
    printf("End of program");
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: