The facility you are requesting is provided by the package hyperref
and backref
For hyperref
you have to say
\usepackage[pagebackref]{hyperref}
or
\usepackage[backref]{hyperref}
If you ever get any warning like
The package hyperref has already been loaded with options: [unicode=true]
try loading the options via \hypersetup
like
\hypersetup{backref}
or add backref
to \documentclass
options
\documentclass[backref]{article}
For more details consult the manual of either backref
or hyperref
package.
\begin{filecontents*}{backref.bib}
@article{Astrm2014,
doi = {10.1016/j.automatica.2013.10.012},
url = {http://dx.doi.org/10.1016/j.automatica.2013.10.012},
year = {2014},
month = jan,
publisher = {Elsevier {BV}},
volume = {50},
number = {1},
pages = {3-43},
author = {Karl J. {\AA}str\"{o}m and P. R. Kumar},
title = {Control: {A} perspective},
journal = {Automatica},
}
\end{filecontents*}
\documentclass{article}
\usepackage{cite}
\usepackage[pagebackref]{hyperref}
\begin{document}
\cite{Astrm2014}
\clearpage
\bibliographystyle{unsrt}
\bibliography{backref}
\end{document}

Best Answer
This is quite easy with BibLaTeX, though for a single reference, it may seem a little like overkill (then again, it'll get you familiar).
Here's a minimal example:
TeX File:
Bib File:
Output