home *** CD-ROM | disk | FTP | other *** search
/ Microsoft Programmer's Library 1.3 / Microsoft-Programers-Library-v1.3.iso / sampcode / c / other / learn / swab.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-25  |  332 b   |  17 lines

  1. /* SWAB.C illustrates:
  2.  *      swab
  3.  */
  4.  
  5. #include <stdlib.h>
  6. #include <stdio.h>
  7.  
  8. char from[] = "BADCFEHGJILKNMPORQTSVUXWZY";
  9. char to[] =   "..........................";
  10.  
  11. main()
  12. {
  13.     printf( "Before:\t%s\n\t%s\n\n", from, to );
  14.     swab( from, to, sizeof( from ) );
  15.     printf( "After:\t%s\n\t%s\n\n", from, to );
  16. }
  17.