You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
283 B
36 lines
283 B
4 years ago
|
void foo(void)
|
||
|
{
|
||
|
a = 5;
|
||
|
b = 3;
|
||
|
j = 6;
|
||
|
|
||
|
for (a = 0; a < j; a++)
|
||
|
{
|
||
|
b *= (a + b);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
struct somestruct
|
||
|
{
|
||
|
int a;
|
||
|
char b;
|
||
|
foo c;
|
||
|
bar *d;
|
||
|
};
|
||
|
|
||
|
struct foo
|
||
|
{
|
||
|
int a;
|
||
|
char *b
|
||
|
};
|
||
|
|
||
|
void f()
|
||
|
{
|
||
|
for (;;)
|
||
|
{
|
||
|
nothing();
|
||
|
}
|
||
|
foobar();
|
||
|
}
|
||
|
;
|