get the category ID and name

Display the category ID or name

<?php
foreach((get_the_category()) as $category)
{
$catid = $category->cat_ID;
$catname =$category->cat_name;
//echo $catname;
}
?>