Find zero byte file but don't need path

Just i want to ask How to search and display name of zero byte file
I have used find command but it is showing complete file path
Thanks
find . -size 0
giving me zero byte file with location
1)/home/user/a

Try this

find . -size 123c | xargs basename

c=>bytes

regards,
Ahamed

but it is showing only one zero byte file though there are two files
i have given
find . -size 0 | xargs basename

try this

thanks its working fine