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

functions-4.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    if-4.c 179 B
    #include <stdio.h>
    
    int main (void)
    {
      int a = 100; int b = 0; if (b != 0) printf ("%d / %d = %d\n", a, b, a / b); else printf ("Bitte nicht durch 0 dividieren!\n"); return 0;
    }