Files
42_EXT_01_dr_quine/1_Colleen/Colleen.c
2024-01-24 10:20:35 +01:00

18 lines
569 B
C

/*
comment outside
*/
#include <stdio.h>
char *second_function() {
return "/*%c comment outside%c*/%c#include <stdio.h>%c%cchar *second_function() {%c return %c%s%c;%c}%c%cint main() {%c /*%c comment inside%c */%c char *program = second_function();%c printf(program, 10, 10, 10, 10, 10, 10, 34, program, 34, 10, 10, 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, 10, 10, 34, program, 34, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10, 10);
return 0;
}