This program will print the value
#include<stdio.h>
#include<fcntl.h>
int main()
{
int rfd, wfd, count;
char buff[11];
if (mkfifo("/tmp/test_fifo",0666) != 0)
perror("mkfifo");
wfd = open("/tmp/test_fifo",O_WRONLY|O_NONBLOCK);
count = write(wfd,"Example",11);
printf("%d\n",count);
rfd = open("/tmp/test_fifo",O_RDONLY|O_NONBLOCK);
count = read(rfd,buff,11);
return 0;
}
#include<stdio.h>
#include<fcntl.h>
int main()
{
int rfd, wfd, count;
char buff[11];
if (mkfifo("/tmp/test_fifo",0666) != 0)
perror("mkfifo");
wfd = open("/tmp/test_fifo",O_WRONLY|O_NONBLOCK);
count = write(wfd,"Example",11);
printf("%d\n",count);
rfd = open("/tmp/test_fifo",O_RDONLY|O_NONBLOCK);
count = read(rfd,buff,11);
return 0;
}A. 0
B. -1
C. 11
D. none of the mentioned
Answer: Option B
Related Questions on Linux
What command is used to count the total number of lines, words, and characters contained in a file?
A. countw
B. wcount
C. wc
D. count p
E. None of the above
What command is used with vi editor to delete a single character?
A. x
B. y
C. a
D. z
E. None of the above

Join The Discussion