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.
19 lines
340 B
19 lines
340 B
4 years ago
|
void foo()
|
||
|
{
|
||
|
abc(1, 2, 3);
|
||
|
abc(10, 20, 30);
|
||
|
abc(100, 200, 300);
|
||
|
cab(3, 2, 1, 0);
|
||
|
brat("foo", 2000, 3000);
|
||
|
brat("question", 2, -42);
|
||
|
brat("a", -22, 1);
|
||
|
while (1)
|
||
|
{
|
||
|
brat("foo", 2000, 3000);
|
||
|
brat("question", 2, -42);
|
||
|
brat("a", -22, 1);
|
||
|
}
|
||
|
brat("foo", 2000, 3000);
|
||
|
brat("a", -22, 1);
|
||
|
}
|