%= in c
Modulus AND assignment operator. It takes modulus using two operands and assigns the result to the left operand.
%= in c
Modulus AND assignment operator. It takes modulus using two operands and assigns the result to the left operand.
c |= operator
// | is the binary "or" operator
// a |= b is equivalent to a = a|b
#include <stdio.h>
int main() {
int a = 10; // 00001010 in binary
int b = 6; // 00000110 in binary
printf("Result : %dn", a |= b);
// Result is 14 which is OOOO111O in binary
return 0;
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us