Clean up tests

This commit is contained in:
jD91mZM2
2018-07-22 11:24:50 +02:00
parent e9484e4d60
commit 67d5976622
97 changed files with 84 additions and 84 deletions
+16
View File
@@ -0,0 +1,16 @@
#include <stdio.h>
int main(int argc, char ** argv) {
printf(
"percent: %%\nstring: %s\nchar: %c\nchar: %c\nint: %d\nuint: %u\nhex: %x\nHEX: %X\nstring: %s\n",
"String",
'c',
254,
-16,
32,
0xbeef,
0xC0FFEE,
"end"
);
return 0;
}