Skip to content
Snippets Groups Projects
Select Git revision
  • d48edcd327479e7a230e1a34684f251a5cd47337
  • 2024ws default
  • 2023ws
  • 2022ws
  • 2021ws
  • 2020ws
  • 2018ws
  • 2019ws
  • 2017ws
  • 2016ws
10 results

answer-07.c

Blame
  • answer-07.c 150 B
    #include <stdio.h>
    
    int main (void)
    {
      int a = 13;
      int b = 137;
      printf ("Die Antwort lautet: %X oder vielleicht auch %x\n", a, b);
      return 0;
    }