43.
What is the output of this program?
#include<stdio.h>
#include<stdlib.h>
#include<string.h>                              
 
int main()
{
    char *ptr;
    memcpy(ptr,"example",11);
    printf("%s\n",ptr);
    return 0;
}

47.
In the preprocessing stage of compilation

48.
The command "gdb demo"

50.
Which one of the following is a element of a kset data structure?

Read More Section(Linux)

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