从文件中读取;无法创建进程

发布于 2024-11-29 00:09:31 字数 545 浏览 0 评论 0原文

这是我的代码:

#include<stdio.h>

void main()
{
    FILE *fp;
    fp=fopen("text.txt","r");
    if(fp==NULL)
        printf("ahaha");

    struct karan{
        int index;
        int number;
        char string[10];
    };

    struct karan first;

    fscanf(fp,"%d %d %s",first.index,first.number,first.string);
    printf("%d %d %s",first.index,first.number,first.string);
}  

如果我的文本文件包含

1 123 karan
2 1234 哈哈

当我编译代码时它说
可能在定义之前使用first。

并在运行代码时显示
无法创建进程!
我做错了什么?

Here's my code:

#include<stdio.h>

void main()
{
    FILE *fp;
    fp=fopen("text.txt","r");
    if(fp==NULL)
        printf("ahaha");

    struct karan{
        int index;
        int number;
        char string[10];
    };

    struct karan first;

    fscanf(fp,"%d %d %s",first.index,first.number,first.string);
    printf("%d %d %s",first.index,first.number,first.string);
}  

If my text file contains

1 123 karan
2 1234 haha

When i compile the code it says
Possible use of first before definition.

and on running the code it says
Cannot create process!
What am i doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿咻 2024-12-06 00:09:31

您需要将 & 运算符与 fscanf 结合使用。

fscanf(fp,"%d %d %s",first.index,first.number,first.string); /* Wrong. */
fscanf(fp,"%d %d %9s", &first.index, &first.number, first.string); /* Right. */
                  ^

否则,您会将 first 中的垃圾视为地址,并会导致未定义的行为。另外,请注意 first.string 的格式。

有一个 C 常见问题解答

为什么调用 scanf("%d", i) 不起作用?

传递给 scanf 的参数必须始终是指针:对于每个
值转换后,scanf 通过填写其中之一“返回”它
您已传递指针的位置。

You need to use the & operator with fscanf.

fscanf(fp,"%d %d %s",first.index,first.number,first.string); /* Wrong. */
fscanf(fp,"%d %d %9s", &first.index, &first.number, first.string); /* Right. */
                  ^

Otherwise you'll be treating the junk in first as addresses and will incur undefined behavior. Also, do note the format for first.string.

There is a C FAQ

Why doesn't the call scanf("%d", i) work?

The arguments you pass to scanf must always be pointers: for each
value converted, scanf ``returns'' it by filling in one of the
locations you've passed pointers to.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文