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:
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, 6746👍, 0💬
Popular Posts:
What is the difference between Class and structure’s ? Following are the key differences between the...
What is CAR (Causal Analysis and Resolution)? The basic purpose of CAR is to analyze all defects, pr...
If we have the following in a Java code: String s="abc"; String s2="abc"; Then what will be output o...
Enable ASP.NET polling using “web.config” file Now that all our database side is configured in order...
How Large Can a Single Cookie Be? - PHP Script Tips - Understanding and Managing Cookies How large c...