Select Git revision
pgscript.sty
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;
}