What is the output of this program no 12?
#include<stdio.h>
int main()
{
int fd_socket;
fd_socket = socket(AF_UNIX,SOCK_STREAM,0);
printf("%dn",fd_socket);
return 0;
}
a) -1
b) 0
c) any integer value
d) none of the mentioned
Submitted by: Murtazad) none of the mentioned
Explanation:
To use socket(), the header files sys/types.h and sys/socket.h are required.
Output:
[root@localhost google]# gcc -o san san.c
san.c: In function 'main':
san.c:6:21: error: 'AF_UNIX' undeclared (first use in this function)
san.c:6:21: note: each undeclared identifier is reported only once for each function it appears in
san.c:6:29: error: 'SOCK_STREAM' undeclared (first use in this function)
[root@localhost google]#
Submitted by: Murtaza
Explanation:
To use socket(), the header files sys/types.h and sys/socket.h are required.
Output:
[root@localhost google]# gcc -o san san.c
san.c: In function 'main':
san.c:6:21: error: 'AF_UNIX' undeclared (first use in this function)
san.c:6:21: note: each undeclared identifier is reported only once for each function it appears in
san.c:6:29: error: 'SOCK_STREAM' undeclared (first use in this function)
[root@localhost google]#
Submitted by: Murtaza
Read Online Linux Debugging Job Interview Questions And Answers
Top Linux Debugging Questions
☺ | Which GDB command produces a stack trace of the function calls that lead to a segmentation fault? |
☺ | Which one of the following GDB command allows to move from one stack frame to another without printing the frame? |
☺ | Which one of the following GDB command deletes any break-point at the next instruction to be executed in the selected stack frame? |
☺ | Which GDB command interrupts the program whenever the value of a variable is modified and prints the value old and new values of the variable? |
Top Linux OS Categories
☺ | Device Drivers Interview Questions. |
☺ | Linux OS Management Interview Questions. |
☺ | Linux Makefile Interview Questions. |
☺ | Linux Environment Interview Questions. |
☺ | Linux OS Shell Interview Questions. |