fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int i;
  6. for(i=64;i>0;i=i/2)
  7. {
  8. printf("%d\t",i);
  9. }
  10.  
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
64	32	16	8	4	2	1