home *** CD-ROM | disk | FTP | other *** search
/ The Devil's Doorknob BBS Capture (1996-2003) / devilsdoorknobbbscapture1996-2003.iso / Dloads / OTHERUTI / TCPP10-7.ZIP / EXAMPLES.ZIP / INTRO32.C < prev    next >
Text File  |  1990-09-26  |  494b  |  24 lines

  1. /* INTRO32.C--Example from Chapter 4 of Getting Started */
  2.  
  3. #include <stdio.h>
  4.  
  5. int main()
  6. {
  7.    char name[40];
  8.    char number[10];
  9.    char *str_ptr = name;
  10.    int pos, num_chars;
  11.  
  12.    printf("Enter a string for the character array: ");
  13.    gets(name);
  14.    printf("How many characters do you want to extract? ");
  15.    gets(number);
  16.    sscanf(number, "%d", &num_chars);
  17.  
  18.    for (pos = 0; pos < num_chars; pos++)
  19.       printf("%c", *str_ptr++);
  20.    printf("\n");
  21.  
  22.    return 0;
  23. }
  24.