Here are two lines of assembly code
mov 0xc(%ebp), %eax
lea 0x14(%eax), %edx
I know the first line is the same as the following in pseudo code
%eax = 0xc(%ebp)
and it's make %eax
equal to the second parameter. But what is the second line trying to do?