qc.hlp (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
PRTSTR.C
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
/* PRTSTR.C: Prints strings. */
#include <stdio.h>
#include <string.h>
 
main()
{
   char aline[80], more[80];
   char *strptr;
 
   /* aline = "Another line."; */
   /* Note: This causes a compiler error */
 
   strcpy( aline, "Another line." );
   strcpy( more, aline );
   strptr = aline;
   strcat( aline, "dog" );
   printf( "A line of text." );
   printf( aline );
   printf( more );
   printf( strptr );
}