What is difference between the following 2 lines….
int temp = (int)(0x00);
int temp = (0x00int);
Answer Posted / 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 |
Post New Answer View All Answers
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
how to print electricity bill according to following charges first 100 units -1rs per unit for next 200 units-1.50 rs per unit without using conditions
What is the maximum length of an identifier?
Explain modulus operator. What are the restrictions of a modulus operator?
What is the use of a conditional inclusion statement in C?
Why is c called c not d or e?
What are header files? What are their uses?
How do you redirect a standard stream?
What is #pragma statements?
Why c is called free form language?
When should you not use a type cast?
What is the difference between break and continue?
Describe newline escape sequence with a sample program?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is difference between %d and %i in c?