79699062

Date: 2025-07-12 06:40:47
Score: 1.5
Natty:
Report link

I thought I'd add a macro solution just for fun:

#define printit(S, X, F)\
do{\
    printf("%s", (S));\
    printf((F), *(X));\
} while(0)

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Euphonious