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
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
When should a far pointer be used?
how many key words availabel in c a) 28 b) 31 c) 32
How are pointers declared in c?
Explain enumerated types in c language?
List out few of the applications that make use of Multilinked Structures?
Is c still used?
What is the difference between a free-standing and a hosted environment?
Can you please explain the difference between exit() and _exit() function?
Write a program to swap two numbers without using third variable in c?
What does c mean?
What is define directive?
Is there sort function in c?
find the sum of two matrices and WAP for it.
Dont ansi function prototypes render lint obsolete?