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

hello-1.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    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;
    }