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

printf-02.c

Blame
  • Forked from Peter Gerwinski / hp
    48 commits behind the upstream repository.
    printf-02.c 167 B
    #include <stdio.h>
    #include <stdint.h>
    
    int main (void)
    {
      uint64_t answer = 42;
      printf ("Die Antwort lautet: ");
      printf (answer);
      printf ("\n");
      return 0;
    }