Skip to content
Snippets Groups Projects
Select Git revision
  • 32464b0ac5f05105269842cfe8e59aae1fc68783
  • master default
2 results

aufgabe-1-32bit.c

Blame
  • user avatar
    Peter Gerwinski authored
    32464b0a
    History
    aufgabe-1-32bit.c 136 B
    #include <stdio.h>
    #include <stdint.h>
    
    int main (void)
    {
      uint32_t x = 303108111;
      char *s = &x;
      printf ("%s\n", s);
      return 0;
    }