Initial commit

This commit is contained in:
2026-01-09 14:29:09 +01:00
commit 20291d04ad
10 changed files with 349 additions and 0 deletions

17
Colleen/C/Colleen.c Normal file
View File

@@ -0,0 +1,17 @@
#include <stdio.h>
#define FORMAT "#include <stdio.h>%1$c#define FORMAT %3$c%2$s%3$c%1$c%1$c/*%1$c This string format the code%1$c*/%1$c%1$cvoid generate() {%1$c printf(FORMAT, 10, FORMAT, 34);%1$c}%1$c%1$cint main(void) {%1$c /*%1$c Call generate function%1$c */%1$c generate();%1$c}%1$c"
/*
This string format the code
*/
void generate() {
printf(FORMAT, 10, FORMAT, 34);
}
int main(void) {
/*
Call generate function
*/
generate();
}