73.
Which one of the following is not contained in the kobject data structure?

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

80.
What is the output of this program?
#include<stdio.h>
#include<fcntl.h>
 
int main()
{     
    int fd, count;
    fd = open("demo.c",O_RDONLY);
    count = write(fd,"Linux",5);
    if(count != 5)
        perror("write");
    return 0;
}

Read More Section(Linux)

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