[ create a new paste ] login | about

Link: http://codepad.org/rjKdSzNl    [ raw code | output | fork ]

C, pasted on Jan 7:
1
2
3
4
5
6
7
void Xuat(LIST l)
{
	for(NODE* p = l.pHead; p != NULL; p = p->pNext)
	{
		printf("%4d", p->info);
	}
}


Output:
1
Line 1: error: expected ')' before 'l'


Create a new paste based on this one


Comments: