#include <stdio.h> int main (void) { int prime[5] = { 2, 3, 5, 7, 11 }; for (int *p = prime; p < prime + 5; p++) printf ("%d\n", *p); return 0; }