boot2

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

00180.c (183B)


      1 #include <stdio.h>
      2 #include <string.h>
      3 
      4 int main()
      5 {
      6    char a[10];
      7    strcpy(a, "abcdef");
      8    printf("%s\n", &a[1]);
      9 
     10    return 0;
     11 }
     12 
     13 /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/