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.
    ascii-3.c 263 B
    #include <stdio.h>
    
    int main (void)
    {
      printf ("Der Buchstabe lautet: %c\n", 1117);
      printf ("Die Zahl lautet: %d\n", ']');
      printf ("Der Buchstabe als Hexadezimalzahl lautet: %x\n", 1117);
      printf ("Die Zahl in hexadezimal lautet: %x\n", ']');
      return 0;
    }