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

input-06.c

Blame
  • input-06.c 234 B
    #include <stdio.h>
    
    int main (void)
    {
      long long unsigned a = (long long unsigned) &a;
      printf ("a = %llu\n", a);
      printf ("Bitte eine Zahl eingeben: ");
      scanf ("%llu", a);
      printf ("Ihre Antwort war: %llu\n", a);
      return 0;
    }