<?php $terms = get_the_terms( $p->ID, 'product_cat' ); foreach ($terms as $t) { echo $t->name, ' '; } ?>
Product cat is category name for WooCommerce products category.
Thanks, Hammad Wali for sharing this useful code!