gpt4 book ai didi

c - O_WRONLY 未声明(首次在该函数中使用)

转载 作者:IT王子 更新时间:2023-10-29 00:17:05 27 4
gpt4 key购买 nike

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <unistd.h>
#include <fcntl.h>
char data [ 6 ];
main ( ) {
int len;
desc = open ( "Resultat", O_WRONLY | O_CREAT | O_EXCL, 0666 );
if ( desc != -1 ) {
len = write ( desc, &data, sizeof ( data ) );
if ( len != sizeof ( data ) )
printf ( "ERROR" );
} }

这是我的代码,我遇到了错误

O_WRONLY undeclared (first use in this function)
O_CREAT undeclared (first use in this function)
O_EXCL undeclared (first use in this function)

我该如何解决?

最佳答案

@Kevin 是对的。在我的 Arch 安装中,根据 man fcntl.h , 你需要 #include <fcntl.h>访问 O_WRONLY .

使用open() , 你还需要 #include <sys/stat.h> .

关于c - O_WRONLY 未声明(首次在该函数中使用),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16726377/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com