Skip to content
Snippets Groups Projects
Select Git revision
  • 69c0bd971780f92ed5067d15da2ee6278ab7b902
  • 2024ws default
  • 2023ws
  • 2022ws
  • 2021ws
  • 2020ws
  • 2018ws
  • 2019ws
  • 2017ws
  • 2016ws
10 results

init-04.c

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