Examveda

In the output of this program, the string "/* Linux */" will be added at the . . . . . . . . of the source file.
#include<stdio.h>
#include<stdlib.h>
#include<fcntl.h>
 
int main()
{
    int fd;
    fd = open("test.c",O_RDWR|O_APPEND);
    write(fd,"/* Linux */",11);
    return 0;
}

A. end

B. beginning

C. second line

D. third line

Answer: Option A


This Question Belongs to Computer Science >> Linux

Join The Discussion

Related Questions on Linux