It is important that you look for a possible recursion in these questions.
Suppose $x=\sqrt{6\sqrt{6\sqrt{6\sqrt{6\ldots}}}}$. Then, see that $x = \sqrt{6x}$ (Can you see why? Basically, what was happening outside the radical is now happening inside the radical).
Now, square it so that $x^2 = 6x$ hence $x=6$ or $x=0$.
To show that $x \neq 0$, do the following: define $x_1 = \sqrt{6}$, and let $x_{n+1} = \sqrt{6x_n}$. By induction prove ,that $x_n$ is an increasing strictly positive sequence. Then prove that $x = \lim x_n$, hence $x$ also must be positive, hence can't be zero.
As another example, you can consider $x= \frac{1}{1+\frac{1}{1+\frac{1}{1+\ldots}}}$. This also can be rewritten recursively, to give $x = \frac{1}{1+x}$, which when solved gives $x = \frac {\sqrt 5 - 1}2$. Hence,
$$
\frac {\sqrt 5 - 1}2 = \frac{1}{1+\frac{1}{1+\frac{1}{1+\ldots}}}
$$
There are many more of these marvels. Try to create some on your own.