Skip to content
Snippets Groups Projects
Select Git revision
  • 0ba264323975d1dc4dd71499afc9d06ee4ce3d5e
  • master default
2 results

pgscript.sty

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