22. WAP to understand bitwise operators. Get link Facebook X Pinterest Email Other Apps #include<stdio.h> void main() { int i=10,j=15,k; k=i&j; printf("k=%d\n",k); k=i|j; printf("k=%d\n",k); k=i^j; printf("k=%d\n",k); k=~i; printf("k=%d\n",k); } Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment