ANSI C:将变量从 (s)scanf 传递到函数调用

发布于 2024-11-09 08:45:35 字数 81 浏览 0 评论 0原文

我的问题是是否可以直接将解析后的内容从 (s)scanf 传递到函数调用。换句话说,我是否必须初始化要传递给函数(并通过 scanf 读取)的变量。

My question is whether or not it is possible to directly pass the parsed stuff from (s)scanf to a function call. In other words whether I have to initialise the variables which I want to pass to the function (and read via scanf) or not.

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

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

发布评论

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

评论(2

貪欢 2024-11-16 08:45:35

sscanf 返回成功转换的数量。它不返回转换后的值。

因此,当将 sscanf 的返回值直接传递到另一个函数时(如果这就是您所要求的),您不会传递新转换的数据。

sscanf returns the number of successful conversions. It does not return the converted values.

So, you wouldn't be passing in the newly converted data when passing the return value of sscanf directly into another function (if that is what you are asking).

后知后觉 2024-11-16 08:45:35

正如其他人所说,sscanf 不会返回值,因此没有“直接”传递它们。但是,您可以用这样的东西包装它:

struct mydata* parse(char* string) {
    struct mydata* ret = (struct mydata*) malloc(sizeof(struct mydata));

    sscanf(string, /* load the structure with the data */);

    return ret;
}

您可以围绕它调用您需要的任何函数。

sscanf, as others said, won't return the values, so there's no "directly" passing them. You can, however, wrap it with something like this:

struct mydata* parse(char* string) {
    struct mydata* ret = (struct mydata*) malloc(sizeof(struct mydata));

    sscanf(string, /* load the structure with the data */);

    return ret;
}

You can call whatever functions you need around that.

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