Find the output?
void main()
{float a=2.0;
printf("\nSize of a ::%d",sizeof(a));
printf("\nSize of 2.0 ::%d",sizeof(2.0));}
Answer Posted / musa
Size of a ::4
Size of 2.0 ::8
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What are the advantages of c preprocessor?
Explain Function Pointer?
Why is extern used in c?
What does the message "automatic aggregate intialization is an ansi feature" mean?
What does *p++ do? What does it point to?
What are the types of data types and explain?
How macro execution is faster than function ?
Explain how do you determine a file’s attributes?
What is assert and when would I use it?
What is the benefit of using an enum rather than a #define constant?
How can I get back to the interactive keyboard if stdin is redirected?
What is %d used for?
Why enum is used in c?
Do character constants represent numerical values?
Explain can the sizeof operator be used to tell the size of an array passed to a function?