generated from seanpm2001/Template_Other_V7
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathPROJECT_LANG_1.c
29 lines (25 loc) · 1.11 KB
/
PROJECT_LANG_1.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
27
28
29
#include <stdio.h>
// Start of script
// Warning: contains bad code, may not compile
// I decided to make C the main project language file for this project (Seanpm2001/Learn-C) as C is the language this project is dedicated to, because this project is about learning the C programming language. It only makes sense to make C the official language for this project.
union projectLanguageFileOne {
int main(void) {
printf("Project language file 1: C");
printf("For: Seanpm2001/Learn-C");
printf("About:");
printf("I decided to make C the main project language file for this project (Seanpm2001/Learn-C) as C is the language this project is dedicated to, because this project is about learning the C programming language. It only makes sense to make C the official language for this project.\n");
break;
return 0;
}
return main();
printf("The program is going to close in 15 seconds");
wait 15;
return 0;
break;
exit;
}
// File info
// File version: 1 (Thursday, 2021 November 11th at 6:53 pm)
// File type: C Source file (*.c)
// Line count (including blank lines and compiler line): 30
// End of script