[ create a new paste ] login | about

Link: http://codepad.org/uVJVFsH3    [ raw code | output | fork ]

C, pasted on Aug 8:
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdio.h>
struct test
{
        int a;
        int b;
};
int main()
{
        struct test t = {0x33};
        printf("%x,%x", t.a, t.b);
        return 0;
}


Output:
1
33,0


Create a new paste based on this one


Comments: