15 lines
153 B
C
15 lines
153 B
C
#include <stdio.h>
|
|
|
|
int f(int *x) {
|
|
return *x+1;
|
|
}
|
|
|
|
int g(int y) {
|
|
int z = y+1;
|
|
return f(&z);
|
|
}
|
|
|
|
int main(void) {
|
|
printf("%d\n", g(1));
|
|
return 0;
|
|
}
|