to find a file in set of directories

Hi,

what is the command in unix to find a file abc.c in a directory which had n number of sub-directories.

thanx

$ find /dir -name abc.c -print

You go to the root directory

command :

find . -name filename

for example I want to find the find abc.c

cd /
find . -name abc.*

thanku... got the solution