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 / pankaj khurana
size of a:: 4
size of 2.0::4
| Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
which is conditional construct a) if statement b) switch statement c) while/for d) goto
How can my program discover the complete pathname to the executable from which it was invoked?
What is FIFO?
Why is c called a mid-level programming language?
What is sizeof in c?
Why is c fast?
Can one function call another?
What is a protocol in c?
What is structure and union in c?
Why c language?
Do array subscripts always start with zero?
Explain what is the difference between a free-standing and a hosted environment?
What is the main difference between calloc () and malloc ()?
What are pointers really good for, anyway?
What is operator promotion?