Sergey
Sergey

Reputation: 11908

what does tilde mean?

a ~= b*c; It can't be boolean logic, so what's that?

Upvotes: 1

Views: 705

Answers (1)

user506710
user506710

Reputation:

~ gives the bitwise complement of a single integer....

So it could be that here b and c multiply and then bits of the number get reversed.

Upvotes: 1

Related Questions