在C语言中,#include "netdb.h文件时什么意思?
发布网友
发布时间:2024-10-21 09:53
我来回答
共2个回答
热心网友
时间:2024-11-14 00:11
#include "netdb.h"
包含一个头文件。头文件名是 netdb.h
MS VC++ 编译器 无此头文件
unix 有。net -- 网络 (network),db -- 数据库(database)
netdb.h 定义了与网络有关的结构,变量类型,宏,函数。
例如:
struct hostent *gethostbyaddr(const void *addr, size_t len, int type);
struct hostent *gethostbyname(const char *name);
热心网友
时间:2024-11-14 00:15
1、#include "netdb.h"
包含一个头文件。头文件名是 netdb.h
2、MS VC++ 编译器 无此头文件。unix 有。
net -- 网络 (network),db -- 数据库(database)
netdb.h 定义了与网络有关的结构,变量类型,宏,函数。
例如:
struct hostent *gethostbyaddr(const void *addr, size_t len, int type);
struct hostent *gethostbyname(const char *name);
热心网友
时间:2024-11-14 00:13
#include "netdb.h"
包含一个头文件。头文件名是 netdb.h
MS VC++ 编译器 无此头文件
unix 有。net -- 网络 (network),db -- 数据库(database)
netdb.h 定义了与网络有关的结构,变量类型,宏,函数。
例如:
struct hostent *gethostbyaddr(const void *addr, size_t len, int type);
struct hostent *gethostbyname(const char *name);
热心网友
时间:2024-11-14 00:16
1、#include "netdb.h"
包含一个头文件。头文件名是 netdb.h
2、MS VC++ 编译器 无此头文件。unix 有。
net -- 网络 (network),db -- 数据库(database)
netdb.h 定义了与网络有关的结构,变量类型,宏,函数。
例如:
struct hostent *gethostbyaddr(const void *addr, size_t len, int type);
struct hostent *gethostbyname(const char *name);