fork download
  1. // C Code
  2. // This program will Create a Loop.
  3. // Developer: James Green
  4. // Date: June 25,2017
  5. #include <stdio.h>
  6. int main()
  7. {
  8. int count =1;
  9. while (count <=100)
  10. {
  11. printf("%d", count);
  12. count++;
  13. }
  14. return 0;
  15. }
Success #stdin #stdout 0s 9432KB
stdin
Standard input is empty
stdout
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100