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));}
Answers were Sorted based on User's Feedback
what will be the output off the following program? #include<stdio.h> int main() { int a; a=015+0*71+5; printf("%d,a"); return0; }
Do you know the difference between malloc() and calloc() function?
What is a C array and illustrate the how is it different from a list.
How does variable declaration affect memory?
Is array a primitive data type in c?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
write an algorithm and c program to add two 2x2 matrics
What is 2 d array in c?
What is main () in c language?
Explain the difference between #include "..." And #include <...> In c?
What is the difference function call by value & function call by reference?
What is that continue statement??