Select Git revision
arrays-05.c
Forked from
Peter Gerwinski / hp
69 commits behind the upstream repository.
Peter Gerwinski authored
arrays-05.c 149 B
#include <stdio.h>
int main (void)
{
int prime[6] = { 2, 3, 5, 7, 11, 0 };
for (int *p = prime; *p; p++)
printf ("%d\n", *p);
return 0;
}