Select Git revision
arrays-pointers-13.c
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;
}