boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

00194.c (313B)


      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 :*/