write Funktion


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);


Beispiele:

pipe example program.

Siehe auch:

pipe Funktion.

open Funktion.

close Funktion.

read Funktion.


Anfang Hauptindex Schlüsselwörter Funktionen


Übers.: G. Junghanns