Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5.    int a;
  6.    char b;
  7.  
  8.    a = 0;
  9.    while (a < 2)
  10.    {
  11.       printf("%d", a++);
  12.       break;
  13.  
  14.       b = 'A';
  15.       while (b < 'C')
  16.       {
  17.          printf("%c", b++);
  18.       }
  19.       printf("e");
  20.    }
  21.    printf("\n");
  22.  
  23.    return 0;
  24. }
  25.  
  26. /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/
  27.