45_empty_for.c 222 B

12345678910111213141516171819
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int Count = 0;
  5. for (;;)
  6. {
  7. Count++;
  8. printf("%d\n", Count);
  9. if (Count >= 10)
  10. break;
  11. }
  12. return 0;
  13. }
  14. /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/