#include <stdio.h>

void
fiboprint (int *series, int n)
{
    while (n-- >= 0)
        printf ("%d%c", *(series++), n >= 0 ? ' ' : '\n');
}