32.
To use the static library in the program

39.
What is the output of this program?
#include<stdio.h>
#include<stdlib.h>
struct st{
    int a;
    char b;
};
 
int main()
{
    struct st *st_ptr;
    st_ptr = malloc(sizeof(struct st));
    printf("%d\n",sizeof(struct st));
    return 0;
}

40.
To feed standard output of one command to standard input of another in a single shell session

Read More Section(Linux)

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