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

87.
Given the command
$ chmod o-w datafile

Read More Section(Linux)

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