aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_MULTARR0.c
diff options
context:
space:
mode:
Diffstat (limited to 'test_deliverable/testcases/test_MULTARR0.c')
-rw-r--r--test_deliverable/testcases/test_MULTARR0.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/test_deliverable/testcases/test_MULTARR0.c b/test_deliverable/testcases/test_MULTARR0.c
new file mode 100644
index 0000000..c2072fc
--- /dev/null
+++ b/test_deliverable/testcases/test_MULTARR0.c
@@ -0,0 +1,10 @@
+int multarr0(int a, int b, int c, int d, int e, int f)
+{
+ int x[3][2] = {
+ { a, b, },
+ { c, d, },
+ { e, f, },
+ };
+
+ return x[1][0];
+}