how to get all the child category name in a specified category name?

Please have a look at wp_list_categories, which is all you need. Just choose the arguments to your liking and place the code in your sidebar.

Suppose, the ID of your ‘product’ category is 666, then the basic code could look like the following:

<ul>
<?php wp_list_categories( 'child_of=666&hide_empty=0'); ?>
</ul>