e.g.
chmod ("/somedir/somefile", 0755);
chmod 644 <filename> (to make it world readable)
chmod 600 <filename> (to make it readable only by you)
For a directory:
chmod 755 <directoryname> (to make it world readable)
chmod 700 <directoryname> (to make it private)