#include #define foo(fmt, ...) printf(fmt, __VA_ARGS__) int main(void) { foo("%i", 1234); return 0; }