kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

6_7_9_07_designated_struct.c (87B)


      1 int test_main(void) {
      2   struct S {
      3     int a, b, c;
      4   } s = {.b = 42};
      5   return s.b;
      6 }