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
Explain how can you determine the size of an allocated portion of memory?
What are data structures in c and how to use them?
What is mean by data types in c?
Write a program which returns the first non repetitive character in the string?
Why is %d used in c?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
What are the different types of errors?
What is the purpose of void pointer?
Do you know the difference between malloc() and calloc() function?
What is the use of void pointer and null pointer in c language?
please send me the code for multiplying sparse matrix using c
What do you mean by recursion in c?
What is the sizeof () a pointer?
What are the rules for the identifier?
Explain enumerated types.