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 / ricky dobriyal
hello fnd..i am ricky dobriyal
output:-
Size of a =4
Size of 2.0=8 /* because of double*/
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What are qualifiers in c?
What is c system32 taskhostw exe?
Explain what is gets() function?
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
Is main is a keyword in c?
Can you please explain the difference between syntax vs logical error?
What is a node in c?
What is difference between scanf and gets?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What does d mean?
Which driver is a pure java driver
How would you rename a function in C?
Explain how can I manipulate strings of multibyte characters?
Explain what is the difference between functions getch() and getche()?
What is pass by reference in functions?