- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人可以帮我编写一个从 .txt 文件读取的函数吗?我做了所有这些,并且编写了很多不同的函数来从文件中读取,但它们都不起作用。每次我按下选项 2 时,它都不会显示我写入文件的内容。代码工作没有错误,我只是不知道如何编写阅读功能。
标题.h
#ifndef HEADER_H
#define HEADER_H
typedef struct tenant {
char fname[30];
char lname[30];
int floor;
int phone;
}TENANT;
void write(FILE*, int, TENANT*);
#endif
来源.c
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
#include "Header.h"
#include <iostream>
#include <conio.h>
int main() {
int n = 0, helper = 0;
char nameFile[100];
TENANT *tenant = NULL;
tenant = (TENANT*)calloc(200, sizeof(TENANT));
FILE *file = NULL;
printf("Name of building: ");
scanf("%s", nameFile);
printf("\n");
while (n != 4) {
printf("Press 1 for creating file! \n");
printf("Press 2 for reading from file! \n");
printf("Press 3 for adding new tenants! \n");
printf("Press 4 to close the file! \n\n");
printf("Number: ");
scanf("%d", &n);
printf("\n");
switch (n)
{
case 1:
file = fopen(nameFile, "w");
printf("File created.\n");
printf("\n");
fclose(file);
break;
case 2:
if ((file = fopen(nameFile, "r")) == NULL)
{
printf("File is not yet created!\n\n");
break;
}
else
{
file = fopen(nameFile, "r");
read(file, helper, tenant);
printf("\n");
fclose(file);
}
break;
case 3:
helper++;
printf("Insert details of tenant: \n", helper);
file = fopen(nameFile, "a");
write(file, helper, tenant);
printf("\n");
fclose(file);
break;
case 4:
printf("Program closed!\n");
break;
default:
break;
}
}
free(tenant);
system("PAUSE");
return 0;
}
函数.c
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include "Header.h"
void write(FILE* file, int helper, TENANT* tenant) {
int i = helper - 1;
printf("Name of tenant: ");
scanf("%s", (tenant + i)->fname);
printf("Laste name of tenant: ");
scanf("%s", (tenant + i)->lname);
printf("Floor: ");
scanf("%d", &(tenant + i)->floor);
printf("Phone: ");
scanf("%d", &(tenant + i)->phone);
fprintf(file, "Name: %s\nLast name: %s\nFloor: %d\nPhone: 0%d\n", (tenant + i)->fname, (tenant + i)->lname, (tenant + i)->floor, (tenant + i)->phone);
fprintf(file, "\n//////////////////////////////////////////////////////////////////////////\n");
}
void read(FILE* file, int helper, TENANT* tenant)
{
fread(tenant, sizeof(*tenant), 1, file);
for (int i = 0; i < helper; i++)
{
fscanf(file, "Name: %s\nLast name: %s\nFloor: %d\nPhone: 0%d\n", (tenant + i)->fname, (tenant + i)->lname, (tenant + i)->floor, (tenant + i)->phone);
}
}
最佳答案
我认为你不应该将你的函数命名为 write(),因为有一个名为 write() 的系统调用,请参阅 man 2 write。阅读同样如此。
有一些错误你应该注意,也许用 -Wall 编译你的代码,这样你就可以看到。printf() 函数的格式中没有 %d,但您向它传递了变量助手。
printf("Insert details of tenant: \n", helper);
在你的 read() 函数中,你不需要这行代码
fread(tenant, sizeof(*tenant), 1, file);
这有很多问题。你应该阅读 man 3 fread 来看看它是如何工作的。
所以,只需让你的阅读功能像这样
void read(FILE* file, int helper, TENANT* tenant)
{
for (int i = 0; i < helper; i++)
{
fscanf(file, "Name: %s\nLast name: %s\nFloor: %d\nPhone: 0%d\n", (tenant + i)->fname, (tenant + i)->lname, (tenant + i)->floor, (tenant + i)->phone);
}
}
在你的主程序中,我认为你会遇到变量助手的问题。您在主函数中初始化了它,如下所示
int helper=0;
因此,第一次调用 write 函数时,您将传递值为 0 的变量助手,并且在函数内部,您的索引器将从 -1 开始。这将导致索引超出范围和未定义的程序行为。也许你应该从一开始就将 helper 初始化为 1。每次调用读取或写入函数后都会增加助手,这样您就不会覆盖租户[0]。
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <stdlib.h>
typedef struct tenant {
char fname[30];
char lname[30];
int floor;
int phone;
}TENANT;
void write(FILE* file, int helper, TENANT* tenant) {
int i = helper - 1;
printf("Name of tenant: ");
scanf("%s", (tenant + i)->fname);
printf("Laste name of tenant: ");
scanf("%s", (tenant + i)->lname);
printf("Floor: ");
scanf("%d", &(tenant + i)->floor);
printf("Phone: ");
scanf("%d", &(tenant + i)->phone);
fprintf(file, "Name: %s\nLast name: %s\nFloor: %d\nPhone: 0%d\n", (tenant + i)->fname, (tenant + i)->lname, (tenant + i)->floor, (tenant + i)->phone);
fprintf(file, "\n//////////////////////////////////////////////////////////////////////////\n");
}
void read(FILE* file, int helper, TENANT* tenant)
{
for (int i = 0; i < helper; i++)
{
fscanf(file, "Name: %s\nLast name: %s\nFloor: %d\nPhone: 0%d\n", (tenant + i)->fname, (tenant + i)->lname, &((tenant + i)->floor), &((tenant + i)->phone));
}
}
int main() {
int n = 0, helper = 1;
char nameFile[100];
TENANT *tenant = NULL;
tenant = (TENANT*)calloc(200, sizeof(TENANT));
FILE *file = NULL;
printf("Name of building: ");
scanf("%s", nameFile);
printf("\n");
while (n != 4) {
printf("Press 1 for creating file! \n");
printf("Press 2 for reading from file! \n");
printf("Press 3 for adding new tenants! \n");
printf("Press 4 to close the file! \n\n");
printf("Number: ");
scanf("%d", &n);
printf("\n");
switch (n)
{
case 1:
file = fopen(nameFile, "w");
printf("File created.\n");
printf("\n");
fclose(file);
break;
case 2:
if ((file = fopen(nameFile, "r")) == NULL)
{
printf("File is not yet created!\n\n");
break;
}
else
{
printf("read");
read(file, helper++, tenant);
//after you test your program for reading
//just delete fprintf :)
fprintf(stdout, "Name: %s\nLast name: %s\nFloor: %d\nPhone: 0%d\n", tenant[0].fname, tenant[0].lname, tenant[0].floor, tenant[0].phone);
printf("\n");
fclose(file);
}
break;
case 3:
helper++;
printf("Insert details of tenant: \n");
file = fopen(nameFile, "a");
write(file, helper, tenant);
printf("\n");
fclose(file);
break;
case 4:
printf("Program closed!\n");
break;
default:
break;
}
}
free(tenant);
system("PAUSE");
return 0;
}
请注意,您正在使用变量助手进行读取和写入。也许为此使用不同的变量,因为如果您在写入时增加变量助手,您将不会从文件的开头读取:)
关于c - C语言读取函数结构体和txt文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50295541/
至少在某些 ML 系列语言中,您可以定义可以执行模式匹配的记录,例如http://learnyouahaskell.com/making-our-own-types-and-typeclasses -
这可能是其他人已经看到的一个问题,但我正在尝试寻找一种专为(或支持)并发编程而设计的语言,该语言可以在 .net 平台上运行。 我一直在 erlang 中进行辅助开发,以了解该语言,并且喜欢建立一个稳
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be
我正在寻找一种进程间通信工具,可以在相同或不同系统上运行的语言和/或环境之间使用。例如,它应该允许在 Java、C# 和/或 C++ 组件之间发送信号,并且还应该支持某种排队机制。唯一明显与环境和语言
我有一些以不同语言返回的文本。现在,客户端返回的文本格式为(en-us,又名美国英语): Stuff here to keep. -- Delete Here -- all of this below
问题:我希望在 R 中找到类似 findInterval 的函数,它为输入提供一个标量和一个表示区间起点的向量,并返回标量落入的区间的索引。例如在 R 中: findInterval(x = 2.6,
我是安卓新手。我正在尝试进行简单的登录 Activity ,但当我单击“登录”按钮时出现运行时错误。我认为我没有正确获取数据。我已经检查过,SQLite 中有一个与该 PK 相对应的数据。 日志猫。
大家好,感谢您帮助我。 我用 C# 制作了这个计算器,但遇到了一个问题。 当我添加像 5+5+5 这样的东西时,它给了我正确的结果,但是当我想减去两个以上的数字并且还想除或乘以两个以上的数字时,我没有
关闭。此题需要details or clarity 。目前不接受答案。 想要改进这个问题吗?通过 editing this post 添加详细信息并澄清问题. 已关闭 4 年前。 Improve th
这就是我所拥有的 #include #include void print(int a[], int size); void sort (int a[], int size); v
你好,我正在寻找我哪里做错了? #include #include int main(int argc, char *argv[]) { int account_on_the_ban
嘿,当我开始向数组输入数据时,我的代码崩溃了。该程序应该将数字读入数组,然后将新数字插入数组中,最后按升序排列所有内容。我不确定它出了什么问题。有人有建议吗? 这是我的代码 #include #in
我已经盯着这个问题好几个星期了,但我一无所获!它不起作用,我知道那么多,但我不知道为什么或出了什么问题。我确实知道开发人员针对我突出显示的行吐出了“错误:预期表达式”,但这实际上只是冰山一角。如果有人
我正在编写一个点对点聊天程序。在此程序中,客户端和服务器功能写入一个唯一的文件中。首先我想问一下我程序中的机制是否正确? I fork() two processes, one for client
基本上我需要找到一种方法来发现段落是否以句点 (.) 结束。 此时我已经可以计算给定文本的段落数,但我没有想出任何东西来检查它是否在句点内结束。 任何帮助都会帮助我,谢谢 char ch; FI
我的函数 save_words 接收 Armazena 和大小。 Armazena 是一个包含段落的动态数组,size 是数组的大小。在这个函数中,我想将单词放入其他称为单词的动态数组中。当我运行它时
我有一个结构 struct Human { char *name; struct location *location; int
我正在尝试缩进以下代码的字符串输出,但由于某种原因,我的变量不断从文件中提取,并且具有不同长度的噪声或空间(我不确定)。 这是我的代码: #include #include int main (v
我想让用户选择一个选项。所以我声明了一个名为 Choice 的变量,我希望它输入一个只能是 'M' 的 char 、'C'、'O' 或 'P'。 这是我的代码: char Choice; printf
我正在寻找一种解决方案,将定义和变量的值连接到数组中。我已经尝试过像这样使用 memcpy 但它不起作用: #define ADDRESS {0x00, 0x00, 0x00, 0x00, 0x0
我是一名优秀的程序员,十分优秀!