I have the following code which creates three tables side by side. How do I add a different caption to each of them separately?
\begin{table}
\footnotesize
\begin{tabular}{|l|l|}
\hline
Service & Features \\
\hline
$S_{11}$ & $F_1$ \\
$S_{12}$ & $F_1$ \\
$S_{13}$ & $F_1$ \\
$S_{14}$ & $F_1$ \\
$S_{15}$ & $F_2$ \\
\hline
\end{tabular}
\hfill
\begin{tabular}{|l|l|}
\hline
Service & Features \\
\hline
$S_{21}$ & $F_3$ \\
$S_{22}$ & $F_3$ \\
$S_{23}$ & $F_3$ \\
$S_{24}$ & $F_3$ \\
$S_{25}$ & $F_4$ \\
\hline
\end{tabular}
\hfill
\begin{tabular}{|l|l|}
\hline
Service & Features \\
\hline
$S_{31}$ & $F_5$ \\
$S_{32}$ & $F_5$ \\
$S_{33}$ & $F_5$ \\
\hline
\end{tabular}
\caption{99 most frequent hashtags in the data set.}
\end{table}

\captionofcommand in each subtable.Have a look at https://tex.stackexchange.com/q/383254/33514. – Jhor Apr 30 '19 at 08:26