1.produce a literary work;
She composed a poem
2.communicate or express by writing;
Please write to me every week
3.have (one's written work) issued for publication;
How many books did Georges Simenon write?
4.communicate (with) in writing;
Write her soon, please!
5.communicate by letter;
He wrote that he would be coming soon
6.write music;
Beethoven composed nine symphonies
7.mark or trace on a surface;
The artist wrote Chinese characters on a big piece of white paper
8.record data on a computer;
boot-up instructions are written on the hard disk
9.write or name the letters that comprise the conventionally accepted form of (a word or part of a word);
He spelled the word wrong in this letter
简介 函数名: write 功 能: 写到一文件中 用 法: int write(int handle, void *buf, int nbyte); 从buf所指向的缓冲区中提取nbyte个字节写入到参数handle所指的文件中 程序例: #include <stdlib.h> #include <unistd.h> #include <stdio.h> #include <string.h> #include <fcntl.h> #include <errno.h> int main(void) { int handle; char string[40]; int length, res; /* Create a fil