如何在 Ubuntu 中的 c 文件中包含 socket.h

发布于 2024-11-06 07:48:40 字数 397 浏览 0 评论 0原文

这是我的 ac 代码:

#include <stdio.h>
#include <socket.h>


int main(void)
{
    int count[4] = {[2] = 3  }, i;

    for (i = 0; i < 4; i++)
        printf("count[%d]=%d\n", i, count[i]);
    return 0;
}

当我编译它时,它显示:

a.c:2: fatal error: socket.h: No such file or directory
compilation terminated.

那么我如何包含它/在哪里可以下载它?

This is my a.c code :

#include <stdio.h>
#include <socket.h>


int main(void)
{
    int count[4] = {[2] = 3  }, i;

    for (i = 0; i < 4; i++)
        printf("count[%d]=%d\n", i, count[i]);
    return 0;
}

When I compile it, it shows:

a.c:2: fatal error: socket.h: No such file or directory
compilation terminated.

So how do I include it / where can download it?

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

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

发布评论

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

评论(1

剪不断理还乱 2024-11-13 07:48:40

应该是:

#include <sys/socket.h>

路径是相对于 /usr/include 路径给出的。例如,socket.h 文件位于 /usr/include/sys/socket.h 下。不知道的可以搜索一下:

find /usr/include/ -name SEARCHED_HEADER.h

It should be:

#include <sys/socket.h>

Paths are given relatively to the /usr/include path. So e.g. the socket.h file is under /usr/include/sys/socket.h. You can search for it if you don't know:

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