How can I handle floating-point exceptions gracefully?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What are the data types present in c?

0 Answers  


#include<stdio.h> int SumElement(int *,int); void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } output?

5 Answers   Ramco,


fun(int x) { if(x > 0) fun(x/2); printf("%d", x); } above function is called as: fun(10); what will it print? }

17 Answers   NDS,


Are there any problems with performing mathematical operations on different variable types?

0 Answers  


how can we print  hellow world programme without using semicolon

3 Answers  






What does a derived class inherit from a base class a) Only the Public members of the base class b) Only the Protected members of the base class c) Both the Public and the Protected members of the base class d) .c file

0 Answers  


How can variables be characterized?

0 Answers  


write a program whose output will be- 1 12 123 1234

10 Answers  


What are data breakpoints?

3 Answers   Adobe,


sqrt(x+sqrt(x+sqrt(x+sqrt(x))))=2; Find the value of x?

4 Answers   Subex,


Is c is a middle level language?

0 Answers  


a value that does not change during program execution a) variabe b) argument c) parameter d) none

0 Answers  


Categories