home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / diverses / snip / ispow2.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-06-25  |  180 b   |  12 lines

  1. #include <stdio.h>
  2.  
  3. another_function(x) { return! ((~(~0U>>1)|x)&x -1) ;}
  4.  
  5. main()
  6. {
  7.     int i;
  8.  
  9.     for (i = 0; i < 256; ++i)
  10.         printf("%3d: %d\n", i, another_function(i));
  11. }
  12.