boot2

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

00186.c (248B)


      1 #include <stdio.h>
      2 
      3 int main()
      4 {
      5    char Buf[100];
      6    int Count;
      7 
      8    for (Count = 1; Count <= 20; Count++)
      9    {
     10       sprintf(Buf, "->%02d<-\n", Count);
     11       printf("%s", Buf);
     12    }
     13 
     14    return 0;
     15 }
     16 
     17 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/