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:
Pointer to Constants
What is the difference between const char* p and char const* p?
✍: FYIcenter
In const char* p, the character pointed by "p" is constant, so you can not change the value of character pointed by p but u can make "p" refer to some other location.
In char const* p, the pointer "p" is constant not the character referenced by it, so you can not make "p" to refernce to any other location but u can chage the value of the char pointed by "p".
2007-02-26, 5939👍, 0💬
Popular Posts:
Jack developed a program by using a Map container to hold key/value pairs. He wanted to make a chang...
How can I show HTML examples without them being interpreted as part of my document? Within the HTML ...
What is the FP per day in your current company?
How can a servlet refresh automatically if some new data has entered the database? You can use a cli...
How To Select Some Rows from a Table? - MySQL FAQs - SQL SELECT Query Statements with GROUP BY If yo...