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 |
How can I find out how much memory is available?
String concatenation
What is null character in c?
what will be the output for the following main() { printf("hi" "hello"); }
How can I implement a delay, or time a users response, with sub-second resolution?
What are pointers? Why are they used?
Tell me what are bitwise shift operators?
what is function pointer?
please give me some tips for the placement in the TCS.
What is the purpose of void in c?
How can I find out how much free space is available on disk?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.