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
Explain can you assign a different address to an array tag?
What is the difference between typedef and #define?
how could explain about job profile
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
How do you define a string?
Can you mix old-style and new-style function syntax?
Is main a keyword in c?
What is "Duff's Device"?
What are the different types of errors?
How do you write a program which produces its own source code as output?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
What are integer variable, floating-point variable and character variable?
how should functions be apportioned among source files?