Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
Other Resources:
Bitwise Operations
Which bit wise operator is suitable for turning off a particular bit in a number?
✍: FYIcenter
The bitwise AND operator. Here is an example:
enum { KBit1 = 0x00000001 KBit2 = 0x00000010, KBit3 = 0x00000100, ... }; some_int = some_int & ~KBit24;
2007-02-26, 9164👍, 0💬
Popular Posts:
How can you check to see whether a symbol is defined? You can use the #ifdef and #ifndef preprocesso...
When should the method invokeLater() be used? This method is used to ensure that Swing components ar...
What print out will the folloging code produce? main() { char *p1=“name”; char *p2; p2=(char*)malloc...
Can you explain different software development life cycles -part II? Water Fall Model This is the ol...
Can you prevent a class from overriding ? If you define a class as “Sealed” in C# and “NotInheritab...