//Name the program file as “write.c” #include<unistd.h> int main() { write(1,"hello\n",6); //1 is the file descriptor, "hello\n" is the data, 6 is the count ...
確定! 回上一頁