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
Explain the difference between null pointer and void pointer.
If null and 0 are equivalent as null pointer constants, which should I use?
Explain what would happen to x in this expression: x += 15; (assuming the value of x is 5)
What is the difference between memcpy and memmove?
How are portions of a program disabled in demo versions?
What is infinite loop?
What is local and global variable in c?
What are the primitive data types in c?
Write a program to implement queue.
What is pre-emptive data structure and explain it with example?
What is wild pointer in c?
Explain a file operation in C with an example.
Where is volatile variable stored?
Explain what is a 'locale'?
Difference between pass by reference and pass by value?