Skip to content
Snippets Groups Projects
Select Git revision
  • f1d1e349b078311261fca50f8545e97120f98239
  • 2024ws default protected
  • 2023ws
3 results

ssh-01.txt

Blame
  • Forked from Peter Gerwinski / Datenbanken und Datensicherheit
    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;
    }