In linux, shared library is a
In linux, shared library is a
What is the output of this program? #include #include #include #include int main
What is the output of this program? #include #include #include #include int main() { sem_t* sem_id; sem_id = sem_open(“sem_value”,O_CREAT,0666,0); if(sem_id == SEM_FAILED) perror(“sem_open”); sem_wait(sem_id);…
Syntax to suppress the display of command error to monitor?
Syntax to suppress the display of command error to monitor?
Which option of gcc adds include directory of header files?
Which option of gcc adds include directory of header files?
What happens as the SIGINT signal hits the running process of this program? #inc
What happens as the SIGINT signal hits the running process of this program? #include #include #include int main() { pid_t child; signal(SIGINT,SIG_IGN); child=fork(); switch(child){…
Which one of the following is a special breakpoint that stops the program when t
Which one of the following is a special breakpoint that stops the program when the value of an expression changes in GDB?
The command ‘umask -S’
The command ‘umask -S’
What is the output of this program? #include #include #include int main() { pid_
What is the output of this program? #include #include #include int main() { pid_t child; int status; child = fork(); switch(child){ case -1 ;…
In linux, a device driver can work without the
In linux, a device driver can work without the
After running this program, as you press ‘e’, what will be the output of the pro
After running this program, as you press ‘e’, what will be the output of the program? #!/bin/bash echo “press ‘e’ to print Example” read…
Accessing the file /proc/meminfo gives the different result each time because
Accessing the file /proc/meminfo gives the different result each time because
To print the value of a variable while debugging with GDB, . . . . . . . . comma
To print the value of a variable while debugging with GDB, . . . . . . . . command can be used.
