求教预编译的时候没有错误 编译的时候报错原因。
#include<stdio.h>#include<stdlib.h>
void main()
{
FILE *f_pic, *f_file, *f_finish;
charch, pic_name, file_name, finish_name;
printf("请输入需要合成的图片和文件名称:/n");
printf("图片:");
scanf("%s", pic_name);
printf("文件:");
scanf("%s", file_name);
printf("生成为:");
scnaf("%s", finish_name);
if(!(f_pic = fopen(pic_name, "rb")))
{
printf("Cannot open the picture %s !", pic_name);
return;
}
if(!(f_file = fopen(file_name, "rb")))
{
printf("Cannot open the file %s !", file_name);
return;
}
if(!(f_finish = fopen(finish_name, "wb")))
{
printf("Cannot open the file %s !", finish_name);
return;
}
while(!(feof(f_pic)))
{
ch = fgetc(f_pic);
fputc(ch, f_finish);
}
fclose(f_pic);
while(!(feof(f_file)))
{
ch = fgetc(f_file);
fputc(ch, f_finish);
}
fclose(f_file);
fclose(f_finish);
system("pause");
}
-------------------Configuration: 56 - Win32 Debug--------------------
Linking...
56.obj : error LNK2001: unresolved external symbol _scnaf
Debug/56.exe : fatal error LNK1120: 1 unresolved externals
执行 link.exe 时出错.
56.exe - 1 error(s), 0 warning(s)
用的是WIN11的系统 在你提供的代码中,预编译器并没有发现错误,因为它通常处理的是宏替换、文件包含等任务,而不负责检查C语言语法和类型错误。然而,在编译阶段会出现错误有以下几个原因:
1. **未包含头文件名**:
在`#include`后面需要加上头文件名,比如标准输入输出头文件需要包含`stdio.h`。
2. **字符串缓冲区错误**:
`char pic_name, file_name, finish_name;`定义的变量是字符类型,而不是字符串(字符数组)。`scanf("%s", pic_name);`应该用于字符数组,以存储文件名。因此,应该声明为字符数组,例如:`char pic_name, file_name, finish_name;`。
3. **`scnaf`拼写错误**:
`scanf`被错误地拼写为`scnaf`。应该是:
scanf("%s", finish_name);
4. **使用`void main()`**:
虽然某些编译器允许`void main()`,但更标准和安全的做法是使用`int main()`,并返回一个整数。
解决上述问题的代码如下:
#include <stdio.h>
#include <stdlib.h>
int main()
{
FILE *f_pic, *f_file, *f_finish;
char ch;
char pic_name, file_name, finish_name;
printf("请输入需要合成的图片和文件名称:\n");
printf("图片:");
scanf("%s", pic_name);
printf("文件:");
scanf("%s", file_name);
printf("生成为:");
scanf("%s", finish_name);
if(!(f_pic = fopen(pic_name, "rb")))
{
printf("Cannot open the picture %s !", pic_name);
return 1;
}
if(!(f_file = fopen(file_name, "rb")))
{
printf("Cannot open the file %s !", file_name);
return 1;
}
if(!(f_finish = fopen(finish_name, "wb")))
{
printf("Cannot open the file %s !", finish_name);
return 1;
}
while(!feof(f_pic))
{
ch = fgetc(f_pic);
fputc(ch, f_finish);
}
fclose(f_pic);
while(!feof(f_file))
{
ch = fgetc(f_file);
fputc(ch, f_finish);
}
fclose(f_file);
fclose(f_finish);
system("pause");
return 0;
}
这应该能帮助你解决编译时的问题。请根据你的具体需求调整代码,确保文件名数组大小足够大以存储输入的文件名。
以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。 本帖最后由 jackz007 于 2024-11-11 11:33 编辑
你这是编译通过,连接不成功,表示你的代码没有语法错误,但是,你所调用的某个函数或变量、常量等标识符找不到来历。
让我们看看编译程序给出的提示信息:
56.obj : error LNK2001: unresolved external symbol _scnaf
scnaf() - 这个函数你自己没有定义,C 的函数库中也找不到,很显然,你把 scanf() 错误地写成 scnaf() 了。
问题语句在这里:
scnaf("%s", finish_name);
页:
[1]