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

blink-6.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    read-1.c 167 B
    #include <stdio.h>
    
    int main (void)
    {
      int a = 0;
      printf ("Bitte eine Zahl eingeben: ");
      scanf ("%d", &a);
      printf ("Ihre Zahl lautete: %d\n", a);
      return 0;
    }