8 lines
73 B
C
8 lines
73 B
C
|
|
typedef struct {
|
||
|
|
int x;
|
||
|
|
int y;
|
||
|
|
} st1;
|
||
|
|
|
||
|
|
st1 fn1(st1 v) {
|
||
|
|
return v;
|
||
|
|
}
|