SZEDER Gábor <szeder.dev@xxxxxxxxx> writes: > +static void print_args(int argc, const char **argv) > +{ > + for (int i = 0; i < argc; i++) > + printf("arg %02d: %s\n", i, argv[i]); > +} It is not November 2022 yet (cf. Documentation/CodingGuidelines). Curious why "%02d", not "%d", or autoscale for cases where argc is larger than 99, but I'll let it pass (iow no need to reroll only to "fix" it).