Source code

Revision control

Copy as Markdown

Other Tools

struct S {
int x;
};
void f(struct S s);
void test() {
struct S s;
f(s);
}