mirror of https://github.com/RainMark/cops.git
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.
14 lines
154 B
14 lines
154 B
#include <stdio.h>
|
|
|
|
int foo(int x1) {
|
|
printf("%d\n", x1);
|
|
return 0;
|
|
}
|
|
|
|
int bar(int x2) {
|
|
return foo(x2);
|
|
}
|
|
|
|
int main() {
|
|
return bar(0);
|
|
}
|
|
|