Show the categories the current post has

Assuming you have added the category taxonomy to your Custom Post Type, you can simply call the_category().

Alternately, if you’re using a custom taxonomy, you can echo the results of get_the_terms( $id, $taxonomy ).