Categories:
.NET (357)
C (330)
C++ (184)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (2)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What is the difference between const char .....
What's the difference between const char *p, char const *p, and char * const p?
✍: Guest
The first two are interchangeable; they declare a pointer to a constant character (you can't change any pointed-to characters). char * const p declares a constant pointer to a (variable) character (i.e. you can't change the pointer).
Read these declarations ``inside out'' to understand them;
2016-01-06, 1788👍, 0💬
Popular Posts:
How To Merge Cells in a Row? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells If you wan...
What exactly happens when ASPX page is requested from Browser? Note: - Here the interviewer is expec...
How to measure functional software requirement specification (SRS) documents? Well, we need to defin...
How to make elements invisible? Change the "visibility" attribute of the style object associated wit...
Does there exist any other function which can be used to convert an integer or a float to a string? ...