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

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