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
What is sizeof array in c?
Differentiate between the expression “++a” and “a++”?
explain what is fifo?
What does static variable mean in c?
Explain how do you list a file’s date and time?
What is optimization in c?
Explain about the functions strcat() and strcmp()?
How can you return multiple values from a function?
Explain high-order bytes.
"C" language developed by "Dennis Ritchie" at AT & T. his remarks are a) too general, too abstract b) could deal with only specific problems c) lost generality of BCPL and B restored d) no remarks
How many data structures are there in c?
Explain threaded binary trees?
what is event driven software and what is procedural driven software?
In a switch statement, what will happen if a break statement is omitted?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?