小问题,谁帮帮我谢谢
编译通过;连接出错:Linker Error:Undefined Symbol '_input' in module name.c错在哪
这是我自己写的源文件:对10个数进行排序 #include<stdio.h> main() { int i[10],k; int compare(); printf("please input ten num:"); for (k=0;k<=9;k++) {input("please input the %d",k+1); scanf("%d",&i[k]); }
printf("\n"); for(k=0;k<10;k++) printf("%5d",i[k]); printf("\n"); compare(k,&i); } int compare(i,p) int i,*p; { int j,k,temp; for (j=0;j<=i;j++) for (k=0;k<=i;k++) { if (p[k]>p[k+1]) {temp=p[k];p[k]=p[k+1];p[k+1]=temp;} } }