main()
{
float a=3.2e40;
printf("%d",a);
}
Answer Posted / vignesh1988i
as for as i know ,
here however 'a' is a float variable when it comes
to printf , the floating numbers will be truncated and it
outputs as 3
thank u
| Is This Answer Correct ? | 11 Yes | 9 No |
Post New Answer View All Answers
any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above
What are header files why are they important?
What is #line?
What is scope rule in c?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58
Is there a built-in function in C that can be used for sorting data?
Why does the call char scanf work?
What are the 4 types of unions?
What is string in c language?
Explain about the constants which help in debugging?
What is bubble sort in c?
Explain how do you print an address?
What are the advantages of using new operator as compared to the function malloc ()?
Array is an lvalue or not?
What is keyword with example?