What is the comma to show the space allocation of files?
No Answer is Posted For this Question
Be the First to Post Answer
How many bits use for MAC address?
what do you understand by 'building block primitive'?
How to view the hidden files in /etc directory?
What will the following command do?
what does a process mean?
When i run a programm of orphan process. Instead of getting child's parent (ppid)=1 ..i get 1400 and it varies as per system. How can i findthe right soluion??? My pgm: #include<stdlib.h> # include <stdio.h> int main() { int pid; pid=fork(); if(pid < 0) {exit(-1);} else if(pid==0) { printf("Child Process is Sleeping ..."); sleep(10); printf("Orphan Child's Parent ID : %u ",getppid()); } else { printf("Parent Process Completed ... %u ",getpid()); exit(0); } return 0; } Output:
distinguish between physical addresses and logical address?
what is the shell for dos,nt operating systems?
What Command will remove a Directory in UNIX?
1-how will you display a file whose name is starting with '- '? 2-how will you add a patten at end of every line in vi editor?
What is the behavioural difference between cmp and diff commands?
How do you execute a UNIX command in the background?