Examveda
Examveda

What is the output of this program?
#include<stdio.h>
#include<fcntl.h>
 
int main()
{     
    int fd, count;
    fd = open("demo.c",O_RDONLY);
    count = write(fd,"Linux",5);
    if(count != 5)
        perror("write");
    return 0;
}

A. it will write the string "Linux" in the beginning of source file "demo.c"

B. it will write the string "Linux" in the end of the source file "demo.c"

C. segmentation fault

D. none of the mentioned

Answer: Option D


This Question Belongs to Computer Science >> Linux

Join The Discussion

Related Questions on Linux