I guess you all misunderstood. Dividing 0 by 0 is indeterminate. It is possible, though, to find a value to which that division approaches using limits. Here's a very simple example
lim (x2 + x - 2)/(x - 1)
x->1
If you substitute 1, you get 0/0. It's possible though to find the value to which this expression approaches by just factoring:
lim (x2 + x - 2)/(x - 1)
x->1
lim (x - 1)(x + 2)/(x-1)
x->1
lim (x+2) = 1 + 2 = 3
x->1
There are a bunch of better techniques to solve 0/0 indeterminate limits (look up l'Hopital's rule), but yeah that was just a simple example.
Moral of the story: 0/0 is an indeterminate value. It's impossible to get the value of 0/0, but it is possible to find the value to which the function approaches about that point.