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, 5973👍, 0💬
Popular Posts:
What is XSLT? XSLT is a rule based language used to transform XML documents in to other file formats...
What's difference between HashTable and ArrayList ? You can access array using INDEX value of array,...
How To Retrieve the Count of Updated Rows? - Oracle DBA FAQ - Working with Database Objects in PL/SQ...
What is difference between ADPATCH and OPATCH ? # ADPATCH is utility to apply ORACLE application Pat...
Give me the example of SRS and FRS SRS :- Software Requirement Specification BRS :- Basic Requiremen...