home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / pyth_os2.zip / python-1.0.2 / Demo / p2c / testf.c < prev    next >
C/C++ Source or Header  |  1993-11-11  |  348b  |  31 lines

  1.  
  2. int foo(int x,
  3.     int y)
  4. {
  5.     printf("\n");
  6.     printf("%d\n", x);
  7.     printf("%d ", x);
  8.     printf("foo ( x = %d , y = %d )\n", x, y);
  9.     while (1) {
  10.         if (x < y) {
  11.             x = x+1;
  12.             printf("%d %d\n", x, y);
  13.             if (x == 100) {
  14.                 break;
  15.             }
  16.         }
  17.         else {
  18.             printf("uit de loop gevallen\n");
  19.             break;
  20.         }
  21.     }
  22.     printf("more\n");
  23. }
  24.  
  25.  
  26. int main()
  27. {
  28.     foo(90, 110);
  29. }
  30.  
  31.