aboutsummaryrefslogtreecommitdiff
path: root/7.3/main.c
diff options
context:
space:
mode:
Diffstat (limited to '7.3/main.c')
-rw-r--r--7.3/main.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/7.3/main.c b/7.3/main.c
new file mode 100644
index 0000000..3b58a5c
--- /dev/null
+++ b/7.3/main.c
@@ -0,0 +1,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;
+}