Skip to content
Snippets Groups Projects
Select Git revision
  • 08256e681ca958282c556749d6332bf473cf4251
  • master default
2 results

operators-3.c

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