Files
cs420/examples/c/struct4.c
2022-11-21 18:16:42 +09:00

20 lines
181 B
C

int nonce = 1; // For random input
struct Foo
{
int x;
};
struct Foo f()
{
struct Foo x;
x.x = nonce;
return x;
}
int main()
{
int x = f().x;
return x;
}