mirror of https://github.com/aamine/cbc
12 lines
118 B
Plaintext
12 lines
118 B
Plaintext
|
union st {
|
||
|
int x;
|
||
|
int x;
|
||
|
};
|
||
|
|
||
|
int main(int argc, char **argv)
|
||
|
{
|
||
|
union st s;
|
||
|
s.x = 0;
|
||
|
return s.x;
|
||
|
}
|