编辑代码

#include <stdio.h>
int f(int i)
{
   return i+15;
}
int main () {
    int i = 10;
    i = f(i) ;
	printf("%d\n",i);
	return 0;
}