struct node *func3() { struct node *tmp, *tmp2; tmp = tmp2 = create(); tmp2 -> next = create(); tmp -> next -> prev = tmp2; return(tmp); }