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