Linux Debugging Questions & Answers – Internet Domain Socket System Calls
This set of Linux Debugging questions and answers focuses on Internet Domain Socket System Calls. 1. What is the output of this program? #include<stdio.h> #include<sys/types.h> #include<sys/socket.h> int main() { struct sockaddr_in addr; int fd; fd = socket(AF_INET,SOCK_STREAM,0); printf("%d\n",fd); return 0; } a) -1 b) 3 c) error d) none of the mentioned 2. What is … Read more