Answer Posted / vadivel t
To Rina answer:
&, |, ^ are not bit wise shift operator.
just they are unary bit wise operators thats it. Bitwise
shift operators are only >> and <<.
--
VEL
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How can I open files mentioned on the command line, and parse option flags?
Explain what math functions are available for integers? For floating point?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
What is wrong in this statement? scanf(ā%dā,whatnumber);
What is the difference between the = symbol and == symbol?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Can you explain the four storage classes in C?
write a program to concatenation the string using switch case?
What is #pragma statements?
what is the function of pragma directive in c?
What are volatile variables in c?
What are qualifiers and modifiers c?
How do you construct an increment statement or decrement statement in C?
What is the purpose of 'register' keyword?
When would you use a pointer to a function?