&   Bitwise Operators in C, Binary AND Operator copies a bit to the result if it exists in both operands.

C Programming Language / Operators and Enums in C Language

1252

Program:

#include"stdio.h"
void main()
{
   unsigned int a = 60;	/* 60 = 0011 1100 */  
   unsigned int b = 13;	/* 13 = 0000 1101 */
   int c = 0;           

   c = a & b;       /* 12 = 0000 1100 */ 
   printf(" Value of c is %d\n", c );
}

Output:

 Value of c is 12
Press any key to continue . . .

This Particular section is dedicated to Programs only. If you want learn more about C Programming Language. Then you can visit below links to get more depth on this subject.