xcode로 c언어 파일 생성및 작성하고 싶은데 뭐가 문제인지 모르겠네요
조회수 629회
#include<stdio.h>
#include<string.h>
#include<fcntl.h>
#include<unistd.h>
int main(){
char *temp = "hello my name\n";
int fd;
char buff[1024] = {0,};
fd = open("./test.txt", O_RDWR|O_CREAT|O_EXCL, 0644); //파일생성하고
write(fd, temp, strlen(temp)); //파일에 temp쓰고
read(fd, buff, 1024); //그파일 읽어서
printf("%s", buff); //buff에 저장한 글씨 출력하기
close(fd);
return 0;
}
이게 제가 짠코드인데 출력에 아무것도 안나오는데 뭐가 잘못된건가요.. xcode에서 짜서 한건데 빌드에는 오류가 없다하는데 출력에 temp에 있는 문구가 안떠요..
댓글 입력