运行C程序复制的二进制文件时出现分段错误
我有一个C程序来复制已编译(可执行)“Hello World!”的二进制文件。 程序。
以下是它的代码。
#include<stdio.h>
#include<stdlib.h>
int main()
{
/* File pointer for source and target files. */
FILE *fs, *ft;
char ch;
/* Open the source file in binary read mode. */
fs = fopen("a.out","rb");
if (fs == NULL)
{
printf("Error opening source file.n");
exit(1);
}
/* Open the target file in binary write mode. */
ft = fopen("hello","wb");
if (ft == NULL)
{
printf("Error opening target file.n ");
fclose(fs);
exit(2);
}
while((ch = fgetc(fs)) != EOF)
{
fputc(ch, ft);
}
fclose(fs);
fclose(ft);
return 0;
}
我已经编译到上面的程序并给出了可执行文件名'file10'。
a.out是hello world程序的可执行文件(二进制文件)。
-bash-4.1$ ./a.out
Hello World!
-bash-4.1$
现在我运行上面的程序,以便将a.out复制到“hello”二进制文件中。
-bash-4.1$ ./file10
-bash-4.1$
这会创建二进制文件“hello”。
接下来我尝试运行这个二进制文件。
-bash-4.1$ ./hello
-bash: ./hello: Permission denied
-bash-4.1$
我被拒绝了权限。 接下来我更改权限。
-bash-4.1$ chmod 777 hello
-bash-4.1$
现在,当我运行“你好”时,我得到了分段错误。
-bash-4.1$ ./hello
Segmentation fault
-bash-4.1$
为什么会出现分段错误? C程序的可执行文件不能像我在上面的程序中那样被复制?
谢谢。
您的变量ch
具有错误的类型。 它应该有类型int
,而不是char
。 通过将fgetc
的结果存储到char
,可以将值255和EOF
合并为一个值,从而在您第一次遇到值为255的字节时停止。
上一篇: Segmentation fault while running the binary file copied by C program