home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT145.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-10  |  472 b   |  20 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat145.c                                             */
  3. /*------------------------------------------------------------------*/
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6.  
  7. void main()
  8. {
  9.    unsigned value;
  10.    int i;
  11.  
  12.    value = 13425;
  13.    for (i=1;i<11;i++)
  14.    {
  15.         printf(" %u ªVÑk▒█┬α %2d ¡╙ª∞ñ╕½ßñº¡╚¼░ : %u\n",
  16.                  value, i, _rotr(value, i));
  17.    }
  18. }
  19.  
  20.