summaryrefslogtreecommitdiff
path: root/python/examples/zero_init/test.c
blob: 5db109a3fc3a52964f5164b8e706a3c2dd4ccd86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#include <stdio.h>

int set_xyz() {
    int xyz = 1;
    return xyz;
}

int foo() {
    int xyz;
    return xyz;
}

int main() {
    printf("Foo return value: %d\n", foo());
    set_xyz();
    printf("Foo return value: %d\n", foo());
    set_xyz();
    printf("Foo return value: %d\n", foo());
    return 0;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback