fork download
  1. #include<stdio.h>
  2.  
  3. int main()
  4. {
  5. int a=1;
  6.  
  7. while(a>100)
  8. {
  9. printf(a);
  10. a=a+1;
  11. }
  12.  
  13. }
  14.  
  15.  
  16.  
Success #stdin #stdout 0.01s 5304KB
stdin
Standard input is empty
stdout
Standard output is empty