I was working on a programming problem wherein I had to display pascal's triangle, so I went into binomial coefficients, and find out above formula $\;\displaystyle\binom n{k+1}=\binom n k\cdot\frac{n-k}{k+1}\;$ to fetch the next pascal's number in a row, knowing $1$ will be the first item in the row, I can use it to produce next pascal number in a row.
I tried googling around trying to find the proof but all in vain. Can someone redirect to some links or help me with the solution for this. Thanks in advance.