boot2

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

052-init-array-str.c (216B)


      1 // tests/cc-parse/52-init-array-str.c — global char[] from a string
      2 // literal initializer. §E.4.
      3 //
      4 // Returns the first byte of the array (97 = 'a').
      5 char s[] = "abc";
      6 char *p = s;
      7 int main(void) { return *p; }