Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
fork()
main() { int i = 2; int ret_val; while(i > 0) { ret_val = fork(); if (ret_val==0) { printf(“In child %d. \n”, i); } else{ printf(“In parent %d. \n”, i);} i=i-1; } } }
✍: Guest
2009-04-19, 5634👍, 0💬
Popular Posts:
What's wrong with this initialization? char *p = malloc(10); My compiler is complaining about an ``i...
Does .NET support UNICODE and how do you know it supports? Yes .NET definitely supports UNICODE. Try...
What is application domain? Explain. An application domain is the CLR equivalent of an operation sys...
What is Shell scripting A shell script is a script written for the shell, or command line interprete...
interview.FYIcenter.com offers a collections of interview questions and answers for software and Web...