Skip to content
Snippets Groups Projects
Select Git revision
  • de859e6c7c697386ac66d4b46f7285d4d6fab5e3
  • master default protected
  • prod_dlrg
  • bugifx_configure_once
  • fix_path_chaos
  • feature_mumbleIntegration
6 results

config.py

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;
    }