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

docker-compose.base.yml

Blame
  • if-07.c 273 B
    #include <stdio.h>
    
    int main (void) { int a = 360; printf ("a = %d\n", a); int b; printf
    ("Bitte b eingeben: "); scanf ("%d", &b); if (b == 0) { printf
    ("Bitte nicht durch 0 teilen.\n"); printf ("Das macht man nicht.\n");
    } else printf ("a / b = %d\n", a / b); return 0; }