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

gtk-02.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    init-04.c 178 B
    #include <stdio.h>
    
    int main (void)
    {
      int a = 42;
      int b;
      printf ("Bitte b eingeben: ");
      scanf ("%d", &b);
      printf ("a * b + a + b = %d\n", a * b + a + b);
      return 0;
    }