Mkfifo
Mkfifo
Write a C/C++ program which demonstrates interprocess communication between a reader process
and a writer process. Use mkfifo, open, read, write and close APIs in your program.
/*Writer Process*/
#include <stdio.h>
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
int main()
{
int fd;
char buf[1024];
#include <fcntl.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
int main()
{
int fd;