int main(void) {
"This is a Colr: %R\n",
);
"%-10R | % 10R | %10R\n",
);
" With colors: %R\nWithout colors: %#R\n",
);
" Normal: %R\n Escaped: %/R\n",
);
char mystring[possible_len];
puts(mystring);
puts(mystring);
char* myalloced = NULL;
return EXIT_FAILURE;
}
puts(myalloced);
free(myalloced);
}