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 / shashishekhar.eg
Size of a ::4
Size of 2.0 ::8
| Is This Answer Correct ? | 17 Yes | 6 No |
Post New Answer View All Answers
What are qualifiers?
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
What is the explanation for cyclic nature of data types in c?
Can you add pointers together? Why would you?
Define Array of pointers.
How do you determine whether to use a stream function or a low-level function?
Why does not c have an exponentiation operator?
What are the difference between a free-standing and a hosted environment?
Why isnt any of this standardized in c?
Explain the priority queues?
Explain how do you use a pointer to a function?
Disadvantages of C language.
Explain what is the difference between text files and binary files?
Can we change the value of #define in c?
What is equivalent to ++i+++j?