Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR C

bitwise AND in c

#include <stdio.h>
int main()
{
    int a = 12, b = 25;
    printf("Output = %d", a&b);
    return 0;
}
Source by www.programiz.com #
 
PREVIOUS NEXT
Tagged: #bitwise #AND
ADD COMMENT
Topic
Name
9+3 =