We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Bitwise Operators
Bitwise Operators
Sort by
recency
|
567 Discussions
|
Please Login in order to post a comment
void calculate_the_maximum(int n, int k) { int i,j,and,or,xor,M1=0,M2=0,M3=0; for(i=1;i
} printf("%d\n",M1); printf("%d\n",M2); printf("%d\n",M3); }
**Mine C solution **