#include "mprintf.h" int main(void) { char p = 'c'; mprintf("%-10s-%3d-%.1f-%x-%p-%o\n", "sneed", 44, 2.4, 0xa7, &p, 023); return 0; }