home *** CD-ROM | disk | FTP | other *** search
/ C++ for Dummies (3rd Edition) / C_FD.iso / CHAP04 / CHAP04_1.CPP next >
C/C++ Source or Header  |  1996-09-02  |  375b  |  14 lines

  1. // Chap04_1.c
  2. int main()
  3. {
  4.    const char * pCC = "this is a constant string";
  5.    char * const cpC = "this is also a string";
  6.  
  7.    *pCC = 'a';                //assignment #1 - illegal
  8.    *cpC = 'b';                //assignment #2 - legal
  9.  
  10.    pCC = "another string";    //assignment #3 - legal
  11.    cpC = "another string";    //assignment #4 - illegal
  12.    return 0;
  13. }
  14.