What is difference between the following 2 lines….
int temp = (int)(0x00);
int temp = (0x00int);
Answers were Sorted based on User's Feedback
Answer / s.srinivasulu
first one is valid initialization and
second one syntax error and it will give compilation error
| Is This Answer Correct ? | 15 Yes | 0 No |
Answer / mandoos
first is an integer declaration and initializing it with a
hex value
Second will produce syntax error, is that question is correct?
| Is This Answer Correct ? | 10 Yes | 0 No |
explain what is an endless loop?
Tell me what are bitwise shift operators?
Differentiate between null and void pointers.
Explain how do you view the path?
how to build a exercise findig min number of e heap with list imlemented?
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
How can I find out how much free space is available on disk?
How does C++ help with the tradeoff of safety vs. usability?
Explain how can I avoid the abort, retry, fail messages?
What is data type long in c?
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm