ok. I don't know if im doing this right. It compiles but comes out all wrong.
Code:
#include <stdio.h>
#define SIZE 5
void Func(int,int,int);

main()

{

	int array[SIZE] = {1,2,3,4,5},
		index=0,
		a=0;

		Func(index,array[SIZE],a);
		
}

void Func(int index,int array[SIZE],int a)

{

	for(index=0; index<5; ++index)
	{
		a = array[index];
		printf("\n%d" , a);
	}	
			
			

	
}