main()
{
float a=3.2e40;
printf("%d",a);
}
Answer Posted / siva
a is declared as float but it is printed as integer so it
must be wrong.........
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Why c is a procedural language?
What is const keyword in c?
What are pointers? What are different types of pointers?
What is a program flowchart?
What are the different types of constants?
Can a file other than a .h file be included with #include?
Why we use void main in c?
What is a spanning Tree?
write an algorithm to display a square matrix.
How we can insert comments in a c program?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
Why c is called free form language?
Can you return null in c?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is the explanation for modular programming?