- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
编辑:我现在意识到我需要问的问题是我将如何捕捉 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/
序 大家好呀,我是summo,这次来写写我在上班空闲(摸鱼)的时候做的一个小网站的事。去年阿里云不是推出了个活动嘛,2核2G的云服务器一年只要99块钱,懂行的人应该知道这个价格在业界已经是非常良心了
我尝试根据给定的级别顺序(BFS 顺序)构造 BST。我知道这是可能的,但我不知道我该怎么写。问题是我必须使用 BFS 序列。所以,我不能在这里使用递归,我必须迭代地编写我的程序......我发现这有
我是一名优秀的程序员,十分优秀!