summaryrefslogtreecommitdiffstats
path: root/šola/p2/vaja/mravlja.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--šola/p2/vaja/mravlja.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/šola/p2/vaja/mravlja.c b/šola/p2/vaja/mravlja.c
new file mode 100644
index 0000000..b22ad05
--- /dev/null
+++ b/šola/p2/vaja/mravlja.c
@@ -0,0 +1,10 @@
+#include <stdio.h>
+#include <assert.h>
+#include <stdlib.h>
+int main (int argc, char ** argv) {
+ assert(argc == 1+2);
+ int m = atoi(argv[1]);
+ int n = atoi(argv[2]);
+ int tabela[m];
+ for ()
+}