Select Git revision
Forked from
Peter Gerwinski / hp
Source project has a limited visibility.
array-vs-pointer-5.c 131 B
#include <stdio.h>
int main (void)
{
char *h = "Hello!\n";
int i = 0;
while (h[i])
printf ("%c", h[i++]);
return 0;
}