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
How many types of errors are there in c language? Explain
Why do we use int main?
How can I invoke another program (a standalone executable, or an operating system command) from within a c program?
What is the difference between class and object in c?
What is meant by int main ()?
How can I call a function with an argument list built up at run time?
Explain how do you view the path?
What are control structures? What are the different types?
What is printf () in c?
How do you sort filenames in a directory?
why return type of main is not necessary in linux
What is methods in c?
How do I read the arrow keys? What about function keys?
while initialization of array why we use a[][2] why not a[2][]...?
What is the use of getchar functions?