summaryrefslogtreecommitdiffstats
path: root/src/examples/lab4test1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/examples/lab4test1.c')
-rwxr-xr-xsrc/examples/lab4test1.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/examples/lab4test1.c b/src/examples/lab4test1.c
new file mode 100755
index 0000000..f64a066
--- /dev/null
+++ b/src/examples/lab4test1.c
@@ -0,0 +1,21 @@
+#include <stdio.h>
+#include <syscall.h>
+
+//compile it, copy to the pintos virtual disk an call this program with arguments using the command
+// pintos --qemu -- run 'lab4test1 arg1 arg2 arg3'
+//if lab 4 is correctly implemented the arguments should be printed to the console
+// try it wih different arguments and different number of arguments
+
+int
+main (int argc, char *argv[])
+{
+
+ for(int i=0;i<argc;i++)
+ {
+ printf("Parameter: %d: %s \n",i,argv[i];
+ }
+
+ return EXIT_SUCCESS;
+}
+
+