created makefile and folder structure

This commit is contained in:
asus
2024-01-23 10:57:51 +01:00
parent 22f8f19067
commit 32ffbc3341
9 changed files with 167 additions and 32 deletions

13
1_Colleen/Colleen.c Normal file
View File

@@ -0,0 +1,13 @@
/*comment outside*/
#include <stdio.h>
char *second_function() {
return "/*comment outside*/%c#include <stdio.h>%c%cchar *second_function() {%c return %c%s%c;%c}%c%cint main() {%c /*comment inside*/%c char *program = second_function();%c printf(program, 10, 10, 10, 10, 34, program, 34, 10, 10, 10, 10, 10, 10, 10, 10, 10);%c return 0;%c}%c";
}
int main() {
/*comment inside*/
char *program = second_function();
printf(program, 10, 10, 10, 10, 34, program, 34, 10, 10, 10, 10, 10, 10, 10, 10, 10);
return 0;
}