Skip to content
Snippets Groups Projects
Select Git revision
  • e5a55ae5d895b36506b339f1f24833424616305f
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

alignment-06.c

Blame
  • Forked from Peter Gerwinski / hp
    48 commits behind the upstream repository.
    alignment-06.c 199 B
    #include <stdio.h>
    #include <stdint.h>
    #include <string.h>
    
    uint8_t a;
    uint64_t b;
    uint8_t c;
    
    int main (void)
    {
      memset (&a, 0xff, 9);
      printf ("a = %d\nb = %d\nc = %d\n", a, b, c);
      return 0;
    }