The directory /sys/block contains
The directory /sys/block contains
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() { struct sockaddr_un add_server, add_client; int fd_server, fd_client; int len; char…
The file /proc/[PID]/limits displays the . . . . . . . . for each of the process
The file /proc/[PID]/limits displays the . . . . . . . . for each of the process’s resource limits.
With a umask value of 112, what is the default permission assigned to newly crea
With a umask value of 112, what is the default permission assigned to newly created regular file?
What is the output of this program? #include int main() { if (mkfifo(“/tmp/test_
What is the output of this program? #include int main() { if (mkfifo(“/tmp/test_fifo”,0666) != 0) perror(“mkfifo”); if (mkfifo(“/tmp/test_fifo”,0666) != 0) perror(“mkfifo”); return 0; }
The command “cpp example.c > example.i” will
The command “cpp example.c > example.i” will
What is FNR?
What is FNR?
Which gcc option is used to specify the library?
Which gcc option is used to specify the library?
In sysfs.h which one of the following structure represents the directory entries
In sysfs.h which one of the following structure represents the directory entries?
What is the command that can print lines of first file matching with second file
What is the command that can print lines of first file matching with second file?
How do you get help about the command “cp”?
How do you get help about the command “cp”?
Given a code snippet below? #define PERMS (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP
Given a code snippet below? #define PERMS (S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH) int main() { int fd1, fd2;…