Dear,
Why the below code ask me to enter 6 numbers? does it not input c[0]....c[4]?
Code:
	int c[5], *y,i;
	for(i=0;i<5;i++)
	{
		printf("%d:",i);
		scanf("%d\n",&c[i]);
	}