16.
If a program is linked against a static library then

19.
Which one of the following statement is not true about the format-control letters for printf statement in awk program?

20.
What is the output of this program?
#include<stdio.h>
#include<stdlib.h>
#include<fcntl.h>
 
int main()
{
    int fd, new_fd;
    char *buff;
    buff = (char *)malloc(sizeof(char)*8);
    fd = open("test.c",O_RDONLY);
    new_fd = dup(fd);
    close(fd);
    read(new_fd,buff,8);
    printf("%s\n",buff);
}

Read More Section(Linux)

Each Section contains maximum 100 MCQs question on Linux. To get more questions visit other sections.