void percentages(int,int);
int main()
{
int a=100;
int b;
b=flip(a);
percentages(a,b);
return 0;
}
运行时出错........
gcc zzz.c -o zzz
/tmp/ccyWUk6q.o(.text+0x2a): In function `main':
: undefined reference to `flip'
/tmp/ccyWUk6q.o(.text+0x3e): In function `main':
: undefined reference to `percentages'
collect2: ld returned 1 exit status