#include struct Wrapper { int value; }; int main(void) { struct Wrapper x; struct Wrapper y; x.value = 23; y = x; printf("%i %i\n", x.value, y.value); y.value = 371; printf("%i %i\n", x.value, y.value); return 0; }