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


Please Help Members By Posting Answers For Below Questions

Which built-in library function can be used to match a patter from the string?

749


Explain Function Pointer?

683


State the difference between realloc and free.

639


Write a program that accept anumber in words

1256


hai iam working in sap sd module for one year and working in lumax ind ltd in desp department but my problem is i have done m.b.a in hr/marketing and working sap sd there is any combination it. can you give right solution of my problem. and what can i do?

1667






why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above

613


What language is lisp written in?

621


i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none

650


What is line in c preprocessor?

618


Explain function?

665


How do I create a directory? How do I remove a directory (and its contents)?

609


In c language can we compile a program without main() function?

584


Can we use any name in place of argv and argc as command line arguments?

610


Why n++ execute faster than n+1 ?

1853


What is %lu in c?

689