main()
{
float a=3.2e40;
printf("%d",a);
}
Answer Posted / shashikanth
0
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Why c is called a mid level programming language?
What is the use of #include in c?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Does c have enums?
Why is a semicolon (;) put at the end of every program statement?
What does %c do in c?
What will be the outcome of the following conditional statement if the value of variable s is 10?
I have seen function declarations that look like this
What is the difference between ++a and a++?
Explain what is the use of a semicolon (;) at the end of every program statement?
how many errors in c explain deply
What is variable and explain rules to declare variable in c?
What is register variable in c language?
What is the use of header?
How do we make a global variable accessible across files? Explain the extern keyword?