82.
What is the output of this program?
#include<stdio.h>
#include<stdlib.h>
 
int main()
{
        char *ptr;
    free(ptr);
    return 0	   
}

83.
What is the output of this program?
#! /usr/bin/awk -f
BEGIN {
    a=5
    while (a<5) {
        print "example"
        a++;
    }
}

85.
What is the output of this program?
#include<stdio.h>
#include<stdlib.h>
 
int main()
{
    int *ptr;
    *ptr = 10;
    *ptr = 20;
    printf("%d\n",*ptr);
    return 0;
}

90.
The 'mapfile' command

Read More Section(Linux)

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