aboutsummaryrefslogtreecommitdiff
path: root/Semestr 4/ask/lista6/test.c
blob: 8a84ac23248c3ea0d764815ec7dde72e17192178 (plain)
1
2
3
4
5
6
7
8
9
#include <stdio.h>
#include <stdint.h>

int main() {
    int32_t x = 0xc0000000;
    int32_t y = x + x;

    printf("%d, %d\n", x, y);
}