home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / GENCSRC.ZIP / CHRSTRG.C < prev    next >
C/C++ Source or Header  |  1987-11-21  |  405b  |  16 lines

  1.                                          /* Chapter 7 - Program 1 */
  2. main()
  3. {
  4. char name[5];       /* define a string of characters */
  5.  
  6.    name[0] = 'D';
  7.    name[1] = 'a';
  8.    name[2] = 'v';
  9.    name[3] = 'e';
  10.    name[4] = 0;     /* Null character - end of text */
  11.  
  12.    printf("The name is %s\n",name);
  13.    printf("One letter is %c\n",name[2]);
  14.    printf("Part of the name is %s\n",&name[1]);
  15. }
  16.