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 / selvapriya
hi frnds...i think my ans is 2,2
| Is This Answer Correct ? | 0 Yes | 6 No |
Post New Answer View All Answers
What is the significance of c program algorithms?
Which header file is used for clrscr?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
What is the use of getch ()?
Can a function argument have default value?
Which is more efficient, a switch statement or an if else chain?
How can you tell whether two strings are the same?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
How can I read/write structures from/to data files?
Why is structure important for a child?
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
Do you know pointer in c?
How can I call a function with an argument list built up at run time?
What is printf () in c?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.