I am using the below code to get attribute name
$attributeId = Mage::getResourceModel('eav/entity_attribute')->getIdByCode('catalog_product','pricee');
echo $attribute = Mage::getModel('catalog/resource_eav_attribute')->load($attributeId);
$attribute->getFrontendLabel()
in this ‘pricee’ is the attribute code. But the output is not the desired one, instead the value under “Admin” is retrieved. Below screen shows the actual field i need to show

What am i doing wrong? Please suggest.
Actually the below code worked in my case,
The output of this is :
Array(
[1] => Price
)