refactor(Colleen): adding the char litteral (and not ascii number)

This commit is contained in:
Raphael 2026-01-30 18:04:36 +01:00
parent c071904812
commit 37cfb490dc
No known key found for this signature in database

View file

@ -10,5 +10,5 @@ const char *get_program(void) {
} }
int main(void) { int main(void) {
printf(get_program(), 10, 9, 34, get_program()); printf(get_program(), '\n', '\t', '"', get_program());
} }