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 are bit fields? What is the use of bit fields in a structure declaration?
Explain what are reserved words?
What does malloc () calloc () realloc () free () do?
In a byte, what is the maximum decimal number that you can accommodate?
explain what is fifo?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Is exit(status) truly equivalent to returning the same status from main?
A character flag or control mechanism that delineates one data item from another a) variable b) constant c) delimiter d) call by reference
Why does notstrcat(string, "!");Work?
What is pointers in c with example?
What is a structural principle?
Explain can the sizeof operator be used to tell the size of an array passed to a function?
What are preprocessor directives in c?
Define VARIABLE?
What is external variable in c?