fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.  
  6. do
  7.  
  8. printf("In while loop ");
  9. while(0);
  10. printf("After loop\n");
  11. }
Success #stdin #stdout 0s 5512KB
stdin
Standard input is empty
stdout
In while loop After loop