aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/34_array_assignment.c
diff options
context:
space:
mode:
authorgrischka <grischka>2013-02-05 13:22:36 +0100
committergrischka <grischka>2013-02-05 13:22:36 +0100
commit60cf64612c1d0a94c15eed3243ef869356e81d79 (patch)
treea6992817cbf301c93c56925b27c15c22fd1290d4 /tests/tests2/34_array_assignment.c
parent6c4d3244dacbf8dfd53deaed81b8b61d00714f37 (diff)
downloadtinycc-60cf64612c1d0a94c15eed3243ef869356e81d79.tar.gz
tinycc-60cf64612c1d0a94c15eed3243ef869356e81d79.tar.bz2
tests2: move into tests
Diffstat (limited to 'tests/tests2/34_array_assignment.c')
-rw-r--r--tests/tests2/34_array_assignment.c23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/tests2/34_array_assignment.c b/tests/tests2/34_array_assignment.c
new file mode 100644
index 0000000..5885c97
--- /dev/null
+++ b/tests/tests2/34_array_assignment.c
@@ -0,0 +1,23 @@
+#include <stdio.h>
+
+int main()
+{
+ int a[4];
+
+ a[0] = 12;
+ a[1] = 23;
+ a[2] = 34;
+ a[3] = 45;
+
+ printf("%d %d %d %d\n", a[0], a[1], a[2], a[3]);
+
+ int b[4];
+
+ b = a;
+
+ printf("%d %d %d %d\n", b[0], b[1], b[2], b[3]);
+
+ return 0;
+}
+
+/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/