-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexit1.c
26 lines (24 loc) · 865 Bytes
/
exit1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stdio.h>
#include <stdlib.h>
// Exit Function
int exit1(){
fflush(stdin);
printf("Exit Function Is Activated\n\n\n");
printf(" ________\n");
printf(" / ______ \\\n");
printf(" || _ _ ||\n");
printf(" ||| || |||\n");
printf(" |||_||_|||\n");
printf(" || _ _o||\n");
printf(" ||| || |||\n");
printf(" |||_||_||| ^~^ ,\n");
printf(" ||______|| \('Y') )\n");
printf(" /__________\\ / \\/\n");
printf(" ________|__________|__ \(\\|||/) _________\n");
printf(" /____________\\\n");
printf(" |____________|\n\n");
printf("The System Will Be Closing Now\n");
printf("\n\t\tTHANK YOU FOR USING OUR DIARY ");
system("exit");
exit(0);
}