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
Explain what’s a signal? Explain what do I use signals for?
Write a program to print fibonacci series using recursion?
What are the different types of constants?
What is the difference between variable declaration and variable definition in c?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
How many types of arrays are there in c?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Explain what are the different file extensions involved when programming in c?
pierrot's divisor program using c or c++ code
Can we assign string to char pointer?
What is the package for freshers(Non IIT) in amazon(hyderabad). And what is the same for those who are a contract employee.
What are external variables in c?
How can I implement sets or arrays of bits?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }