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 / deepshree sinha
2
2
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Why cant I open a file by its explicit path?
In a switch statement, explain what will happen if a break statement is omitted?
What is the advantage of a random access file?
I heard that you have to include stdio.h before calling printf. Why?
What is formal argument?
Differentiate Source Codes from Object Codes
Explain the difference between #include "..." And #include <...> In c?
When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd
Why is sprintf unsafe?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
What is s or c?
Why pointers are used in c?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
The % symbol has a special use in a printf statement. How would you place this character as part of the output on the screen?
in programming languages a statement or part of a statement that specifies several different execution sequences a) constructs b) distructs c) executes d) none