fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int a=3,b;
  5. do
  6. {
  7. b = 2 * a -1;
  8. }
  9. while(b >= 1000);
  10. printf("%d",b);
  11. return 0;
  12. }
  13.  
Success #stdin #stdout 0.01s 5296KB
stdin
Standard input is empty
stdout
5