if (is_single())
{
// http://codex.wordpress.org/Template_Tags/the_category
the_category('separator', 'parents' );
// http://wordpress.org/support/topic/161861
foreach((get_the_category()) as $category)
{
echo $category->cat_name . ' --';
}
}
?>