Examveda

What is the output of this program?
#include<stdio.h>
#include<sys/types.h>
#include<sys/socket.h>
 
int main()
{
    int fd;
    fd = socket(AF_UNIX,SOCK_STREAM,0);
    printf("%d\n",fd);
    return 0;
}

A. 0

B. 1

C. 2

D. 3

Answer: Option D


This Question Belongs to Computer Science >> Linux

Join The Discussion

Related Questions on Linux