Yea, I meant to get that done, here it is:
Code:
void InputRecord(struct point *ptrNew)
{
	printf("Please enter the 2 Data points(x and y):\n");
	ptrFirst=ptrNew;
	if(ptrNew==NULL)
		printf("No more memory.\n");
	else
	{
	scanf("%d%d",&ptrFirst->x, &ptrFirst->y);	
	printf("Please enter the label:\n");
	scanf("%s", ptrFirst->label);
	ptrFirst->ptrNext=NULL;
	}
}
Its still segmenting though, I looked it over again, but being new to it still came up blank, any professional advice?