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
How do you construct an increment statement or decrement statement in C?
If errno contains a nonzero number, is there an error?
What is the explanation for cyclic nature of data types in c?
What are the types of assignment statements?
while initialization of array why we use a[][2] why not a[2][]...?
Is null valid for pointers to functions?
Which is better oop or procedural?
Which is better malloc or calloc?
write a program to find out prime number using sieve case?
How many keywords are there in c?
Write a program to print all permutations of a given string.
What is memcpy() function?
What is linear search?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Why array is used in c?