C Equivalent of assembler instruction ANL

Assembler:
----------
CCAPM1 DATA 0C3h
ANL CCAPM1, #00dh

C equivalent ????
-----------------
sfr ccapm1 = 0xc3;

ccapm1 = ccapm1 & ~(0x0d);
or
ccapm1 = ccapm1 & 0x0d;
or
ccapm1 = ccapm1 && 0x0d;

Can some one shed a light on the correct interpretation??

Thanks.

More questions in this forum