home *** CD-ROM | disk | FTP | other *** search
- // Chap04_1.c
- int main()
- {
- const char * pCC = "this is a constant string";
- char * const cpC = "this is also a string";
-
- *pCC = 'a'; //assignment #1 - illegal
- *cpC = 'b'; //assignment #2 - legal
-
- pCC = "another string"; //assignment #3 - legal
- cpC = "another string"; //assignment #4 - illegal
- return 0;
- }
-