List categories of a post hierarchically?

You could fetch the post categories, then pass them into wp_list_categories to take care of displaying them hierarchally.

Something like..

wp_list_categories( array( 
    'include' => array_keys( get_the_terms( $post->ID, 'category' ) ), 
    'title_li' => '' 
) );

Hope that helps.. 🙂