aboutsummaryrefslogblamecommitdiff
path: root/7.3/main.c
blob: 3b58a5c88ad4c3ca55792804589fd2ba492d73b6 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                                              
#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;
}