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:
String Concatenation
What will be printed as the result of the operation below:
main() { char *p1; char *p2; p1=(char *)malloc(25); p2=(char *)malloc(25); strcpy(p1,"Cisco"); strcpy(p2,"systems"); strcat(p1,p2); printf("%s",p1); }
✍: FYIcenter
Answer: Ciscosystems
2007-02-26, 6053👍, 0💬
Popular Posts:
When should the register modifier be used? Does it really help? The register modifier hints to the c...
Does it matter in what order catch statements for FileNotFoundException and IOExceptipon are written...
Can you explain project life cycle ? Figure :- 12.2 Life cycle of a project There are five stages of...
What will be printed as the result of the operation below: main() { char *p1; char *p2; p1=(char *)m...
How can I enable session tracking for JSP pages if the browser has disabled cookies? We know that se...