about summary refs log tree commit diff stats
path: root/tests32/test04.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests32/test04.c')
-rw-r--r--tests32/test04.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests32/test04.c b/tests32/test04.c
new file mode 100644
index 00000000..520360ed
--- /dev/null
+++ b/tests32/test04.c
@@ -0,0 +1,7 @@
+#include <stdio.h>
+
+int main(int argc, char **argv)
+{
+    printf("Hello, argc=%d argv[%d]=%s\n", argc, argc-1, argv[argc-1]);
+    return 0;
+}