read function


read


	Library:   unistd.h
		   sys/types.h

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

	Syntax:    int fd;
                   char Buff[50];

		   read(fd, Buff, sizeof(Buff));


Examples:

pipe example program.

See Also:

pipe function.

open function.

close function.

write function.


Top Master Index Keywords Functions


Martin Leslie