Select Git revision
strings-6.c
Forked from
Peter Gerwinski / hp
281 commits behind the upstream repository.
Peter Gerwinski authored
strings-6.c 199 B
#include <stdio.h>
int main (void)
{
volatile char answer[] = {42, 137, 13, 117};
char hello[14] = "Hello, world!\n";
printf ("%s", hello);
printf ("Answer: %d\n", answer[0]);
return 0;
}