if you know that its the FIRST or LAST key in the array... you can do something like....
$c = end(abc()); //set c to LAST array value
$c = current(abc()); //set c to FIRST array value
if I remember right those methods work... since code would be evaluated LIFO
[edit-- since you are trying to echo... --]
echo end(abc()); //last array value
echo current(abc()); //first value in array
and since it appears you are ONLY using 1 key... either of those should work.... if you are using more than one indice it becomes messier...