Select Git revision
Forked from
Peter Gerwinski / bs
79 commits behind the upstream repository.
Peter Gerwinski authored
hello-02.c 122 B
#include <stdio.h>
int main (void)
{
char *hello = "Hello!";
hello[1] = 'a';
printf ("%s\n", hello);
return 0;
}