9 lines
71 B
C
9 lines
71 B
C
|
struct foo {
|
||
|
int i;
|
||
|
};
|
||
|
|
||
|
void func() {
|
||
|
struct foo *f;
|
||
|
f->i = 3;
|
||
|
}
|