[求助]怎样用C++builder 6把 4个 C文件 生成 一个程序
怎样用C++builder 6把 4个 C文件 生成 一个程序
main()
{extern enter_string(char str[80]);
extern delete_string(char str[],char ch);
extern print_string(char str[]); /* 以上3行声明要调用在其他文件的3个函数*/
char c;
char str[80];
enter_string(str);
scanf("%c",&c);
delete_string(str,c);
print_string(str);
}//为file1
#include<stdio.h>
entr_string(char str[80])
{gets(str);}//为file2
delete_string(char str[],char ch)
{int i,j;
for (i=j=0;str[i]!='\0';i++)
if(str[i]!=ch)
str[j++]=str[i];
str[j]='\0';
}//为file3
print_string(char str[])
{
printf("%s",str);
}//为file4
[此贴子已经被作者于2006-8-24 0:44:34编辑过]