main()
{
float a=3.2e40;
printf("%d",a);
}
Answer Posted / vinaykumar
it is not execute, bcz in the printf satement declared as
integer so answer is 0.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Find duplicates in a file containing 6 digit number (like uid) in O (n) time.
Does free set pointer to null?
What is string function c?
Find MAXIMUM of three distinct integers using a single C statement
What is linear search?
What will the preprocessor do for a program?
What are keywords c?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What are the loops in c?
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is an example of structure?
Write a program to check palindrome number in c programming?
What is the g value paradox?
What is a built-in function in C?
Explain how can I remove the trailing spaces from a string?