fork download
  1. #include <stdio.h>
  2. main()
  3. {
  4. int i = 0, n = 20;
  5. do
  6. {
  7. printf("-");
  8. i--;
  9. } while ( i & n );
  10. }
Runtime error #stdin #stdout 0.02s 1676KB
stdin
Standard input is empty
stdout
---------------------