Select Git revision
answer-07.c
Peter Gerwinski authored
answer-07.c 150 B
#include <stdio.h>
int main (void)
{
int a = 13;
int b = 137;
printf ("Die Antwort lautet: %X oder vielleicht auch %x\n", a, b);
return 0;
}