I planed following to compute the circle's circumference.

The circle's circumference finally can computable from: $$\lim_{\alpha\to0}{\frac{360^o}\alpha d} = 2\pi r$$ I don't want to follow above computation here but it's computable and I already have done it on a paper.
I just could not understand when and how $360^o$ changed itself to $\pi=3.1415...$?! i.e. it mutated itself from an angle to a distance!
Seems like the underlying misunderstanding here is the degrees/radians relationship that @fuglede hinted at in the comments. How it specifically comes into play is in the sine function. When you're working this problem, and you're using sine (or any trig function) you need to remember that the function that uses degrees as an input, let's call it $sin_d()$, is a different function from the function that uses radians, $sin()$. For example,
$\lim_{\alpha\to0}{\frac{sin(k\alpha)}\alpha} = k$
but
$\lim_{\alpha\to0}{\frac{sin_d(k\alpha)}\alpha} = \frac{k\pi}{180}$
That's why $360$ (degrees) is becoming $2\pi$ (radians).