If you want display comments count in /components/com_content/views/article/tmpl/default.php you need insert next code:
<?php
$commentsPath = JPATH_ROOT.DS.'components'.DS.'com_jcomments'.DS.'jcomments.php';
if (file_exists($commentsPath)) {
require_once($commentsPath);
$count = JComments::getCommentsCount($this->article->id, 'com_content');
echo $count ? ('('. $count . ')') : '';
} ?>