concatenating string and variable

how to concatenate a string and variable like

a=rahul

and i want to put it into another variable 'b' as "rahul_prasath"

i dont want to use another variable for "_prasath"

how to do it?

a=unix
b="$a"admin
echo $b

u will get unixadmin.

i hope this will solve ur problem