Here's a solution using TikZ nodes for positioning on baselines. In the example, we align at the third row.
\documentclass{article}
\usepackage{tikz}
\newcommand{\tikzmark}[2]{\tikz[overlay,remember picture,
baseline=(#1.base)] \node (#1) {#2};}
\begin{document}
\tikz[overlay,remember picture,baseline=(cell.base)]{
\node (table) {\begin{tabular}{c}
A \\
B \\
\tikzmark{cell}{C} \\
D \\
\end{tabular}};}
\quad text aligned with the third row
\end{document}

The macro \tikzmark produces a node we called cell. The whole table has been put into a node contained in a TikZ environment, and we defined that the baseline of this environment (with the table) should be the base of this node. This way the table gets the desired baseline, matching the baseline of the following text.
Once having such TikZ nodes, it gives you further possibilities, such as drawing arrows or braces or using it for further alignment. Have a look at Highlighting elements in a matrix to see what I mean.
\begin{tabular}[c]{c}. – yannisl Jan 21 '12 at 11:50