Skip to content
Snippets Groups Projects
Select Git revision
  • fdd023ef684d62b2f76f0ab5ebcffda19d982a21
  • master default protected
  • cvh
  • main
4 results

CODE_OF_CONDUCT.md

Blame
  • test-2.c 201 B
    #include <stdio.h>
    
    int main (void)
    {
      int a = 137;
      int b = 13 * a;
      if (b = 42)
        printf ("Die Antwort lautet: %d\n", b);
      else
        printf ("Die Antwort lautet: keine Ahnung\n");
      return 0;
    }