6. Length of LL (recursive) #

Created Thursday 16 January 2020

if(head==NULL) return 0; return 1 + f(head->next);