write function


write


	Library:   unistd.h
		   sys/types.h

	Prototype: int write(int fd, char *Buff, int NumBytes);

	Syntax:    int fd;
                   char Buff[]="V8 cars are coool";

		   write(fd, Buff, strlen(Buff)+1);


Examples:

pipe example program.

See Also:

pipe function.

open function.

close function.

read function.


Top Master Index Keywords Functions


Martin Leslie