Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
How do I replace every <TAB> character in a file with a comma?
How do I replace every <TAB> character in a file with a comma? perl -pi.bak -e 's/\t/,/g' myfile.txt 2013-09-18, 2062👍, 0💬
How do you find the length of an array?
How do you find the length of an array? $@array 2013-09-11, 1700👍, 0💬
What does read() return at end of file?
What does read() return at end of file? 0 A defined (but false) 0 value is the proper indication of the end of file for read() and sysread(). 2013-09-09, 1637👍, 0💬
Popular Posts:
In which event are the controls fully loaded ? Page_load event guarantees that all controls are full...
What is difference between SITP and UTP in testing ? UTP (Unit Test Plan) are done at smallest unit ...
.NET INTERVIEW QUESTIONS - What is the difference between thread and process? A thread is a path of ...
Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?...
How can you determine the size of an allocated portion of memory? You can't, really. free() can , bu...