How do I add the 'right angle sign' at B?
\documentclass[12pt]{book}
\usepackage{tikz}
\begin{document}
\begin{tikzpicture}
% Draw the triangle
\draw[fill=gray!10] (1, 0) coordinate (A)
-- node[left] {} (0,2) coordinate (C)
-- node[above right] {} (6,2) coordinate (B)
-- node[below] {} (1, 0);
%The right-angle mark at C is drawn.
% Draw nodes
\node at (A)[anchor=north] {$B$};
\node at (B)[anchor=north] {$C$};
\node at (C)[anchor=south] {$A$};
\end{tikzpicture}
\end{document}
