In this program, the third argument of the socket() is used for _____ potocol.
#include<stdio.h>
#include<sys/types.h>
#include<sys/socket.h>
int main()
{
int fd_socket;
if(socket(AF_UNIX,SOCK_STREAM,0) == -1)
perror("socket");
return 0;
}
a) TCP/IP
b) UDP
c) both (a) and (b)
d) none of mentioned

Submitted by: Murtaza
a) TCP/IP
Submitted by: Murtaza

Read Online Linux Debugging Job Interview Questions And Answers