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
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