Select Git revision
strings-3.c
Peter Gerwinski authored
strings-3.c 157 B
#include <stdio.h>
int main (void)
{
char hello_world[] = "Hello, world!\n";
char *p = hello_world;
while (*p)
printf ("%c", *p++);
return 0;
}