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 / guest
2 2
| Is This Answer Correct ? | 1 Yes | 10 No |
Post New Answer View All Answers
What does the function toupper() do?
Can the sizeof operator be used to tell the size of an array passed to a function?
What does volatile do?
Can we assign string to char pointer?
What is the use of volatile?
What are pointers? Why are they used?
What is the concatenation operator?
Why is extern used in c?
How are Structure passing and returning implemented by the complier?
How many bytes is a struct in c?
Explain what is the general form of a c program?
What is the total generic pointer type?
while initialization of array why we use a[][2] why not a[2][]...?
Is c easier than java?
Which function in C can be used to append a string to another string?