Select Git revision
printf-02.c
Forked from
Peter Gerwinski / hp
48 commits behind the upstream repository.
Peter Gerwinski authored
printf-02.c 167 B
#include <stdio.h>
#include <stdint.h>
int main (void)
{
uint64_t answer = 42;
printf ("Die Antwort lautet: ");
printf (answer);
printf ("\n");
return 0;
}