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
What is context in c?
Explain how can I make sure that my program is the only one accessing a file?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What is getch c?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Do character constants represent numerical values?
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What is page thrashing?
What is the difference between fread and fwrite function?
What is the use of function overloading in C?
Who invented bcpl language?
What is ponter?
Explain what will the preprocessor do for a program?
Can stdout be forced to print somewhere other than the screen?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.