Skip to content
Snippets Groups Projects
Select Git revision
  • b7feb37c71e38a2a25780357d72babe2e41a3a36
  • master default protected
2 results

EngineController.class

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