new file structure according to subject

This commit is contained in:
asus
2024-01-26 12:30:38 +01:00
parent 78959d77cd
commit 318cff516b
11 changed files with 13 additions and 9 deletions

10
C/1_Colleen/Colleen.c Normal file
View File

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