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;
}
#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

Join The Discussion