gpt4 book ai didi

C for 循环打印不正确,字符乱序

转载 作者:太空宇宙 更新时间:2023-11-04 03:35:48 26 4
gpt4 key购买 nike

编辑:我现在意识到我需要问的问题是我将如何捕捉 dat 文件“^M”中的回车符并丢弃我的输出,如下所示。

我的程序从文件中读取字符,将它们放入一个数组中,一旦数组已满,它就会转储输入。该文件包含我猜测可能导致问题的特殊字符。我正在读取字符,然后以十六进制格式打印它们的数值,然后在下一行我想以字符形式打印相同的信息。

谁能告诉我为什么我的 for 循环似乎跳来跳去?数组是否加载不正确?

file.dat FILE -- 在之后包含标签

This is a test of               program^M

Special characters are: ^L ^H ^K

OUTPUT: -- 输出格式为 %x

54 68 69 73  69 73  61  74 65 73 74  6f 

66 70 72 6f 67 72 61 6d d 53 70

65 63 69 61 6c 63 68 61 72 61 63 74 65 72 73

61 72 65 3a c 8 b ffffffff 72 73

十六进制格式的输出是正确的,翻译后就是我想要和需要的输出

OUTPUT: -- 输出错误乱序

T h i s  i s  a  t e s t  o 

S p o g r a m 3

e c i a l c h a r a c t e r s

a r e :

? r s

这个输出显然是错误的,让我很困惑。我不明白一个简单的 for 循环是如何导致此输出的。

代码:

#include <stdio.h>
#include <string.h>
#include <stdlib.h>

void print_group(char array[]);
void print_space(int num);
void printbits(int bits);
int main()
{
char array[16];
char i_file;
int count = 0;
FILE *fp;
int bits = 0;
int a = 0;

fp = fopen("file.dat","r");

if( fp == NULL)
{
printf("ERROR");
}
else
{
while (!feof(fp)) /*while pointer hasnt reached end of file continue loop*/
{
array[count] = fgetc(fp);

if(count == 15 || feof(fp))
{
print_group(array);
count = -1;
printf("\n");
}
count++;
}
}

fclose(fp);

return 0;
}

void print_group(char array[])
{
int a;
int num;

for(a = 0; a <= 15; a++)
{
/*This for loop wil print the numbers that are associated with the dump
of the array.*/
if(array[a] == ' ' || array [a] == '\t' || array[a] == '\n' || array[a] == '\?')
{
printf("20 ");
}
else
printf("%x ",array[a]);
}

printf("\n");

for(a = 0; a <= 15; a++)
{
/*This for loop wil print the characters that are associated with the dump
of the array.*/
if (array[a] == ' ' || array [a] == '\t' || array[a] == '\n' || array[a] == '\?') {
printf(" ");
}
else
printf("%c ",array[a]);
}
}

void print_space(int num)
{}

最佳答案

while(!eof) 是错误的

在调用 feof() 之前,始终需要检查读取的返回值(fread()、fscanf() 或 fgetc())。

就像它进入循环的次数比你预期的多。如果出现读取错误,循环永远不会终止。

尝试:

int c;

while ((c = fgetc(fp)) != EOF) {
// do something with c
}
if (ferror(fp)) {
// handle the error, usually exit or return
} else {
// continue execution
}

还有很多其他帖子对此进行了解释。

关于C for 循环打印不正确,字符乱序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32851104/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com