MCQ Practice
In this program, the third argument of the socket() is used for . . . . . . . . potocol. #include #include #include int main() { int fd_socket; if(socket(AF_UNIX,SOCK_STREAM,0) == -1) perror("socket"); return 0; }
Subject: Computer Science EngineeringTopic: Linux
Correct Answer: A
