What is difference between the following 2 lines….
int temp = (int)(0x00);
int temp = (0x00int);
Answer Posted / akshay
there is No diff
Question is absolutely Correct
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is 1f in c?
Differentiate between new and malloc(), delete and free() ?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What does sizeof int return?
Differentiate between calloc and malloc.
What is #include cctype?
What is the use of a conditional inclusion statement in C?
Why is c used in embedded systems?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is the 'named constructor idiom'?
Why do we use main function?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
What does stand for?
What is the difference between a free-standing and a hosted environment?