aboutsummaryrefslogtreecommitdiff
path: root/Semestr 4/ask/lista6/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'Semestr 4/ask/lista6/test.c')
-rw-r--r--Semestr 4/ask/lista6/test.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Semestr 4/ask/lista6/test.c b/Semestr 4/ask/lista6/test.c
new file mode 100644
index 0000000..8a84ac2
--- /dev/null
+++ b/Semestr 4/ask/lista6/test.c
@@ -0,0 +1,9 @@
+#include <stdio.h>
+#include <stdint.h>
+
+int main() {
+ int32_t x = 0xc0000000;
+ int32_t y = x + x;
+
+ printf("%d, %d\n", x, y);
+} \ No newline at end of file