What is difference between the following 2 lines….
int temp = (int)(0x00);
int temp = (0x00int);
Answer Posted / 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 |
Post New Answer View All Answers
What does the error message "DGROUP exceeds 64K" mean?
how to find binary of number?
If fflush wont work, what can I use to flush input?
Explain bitwise shift operators?
What is the size of array float a(10)?
Differentiate between #include<...> and #include '...'
what are enumerations in C
What are the different types of objects used in c?
How can I remove the trailing spaces from a string?
What is the difference between near, far and huge pointers?
What is const and volatile in c?
Explain is it better to bitshift a value than to multiply by 2?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
What is the purpose of void in c?