#include "List.h" int lengthItr(List L) { int len; len=0; while(L!=NULL) { len++; L=L->tl; } return len; } /* Length of a List L (iterative) */