What is floating point exception error? And what are
different types of errors occur during compile time and run
time? why they occur?



What is floating point exception error? And what are different types of errors occur during compile..

Answer / gsrinivas

if we declared a variable of type float and we use that or
we match that with other types then floating point
exception occcures.syntax errors because if the code or
structure of alanguge is not match with the author
specified rules and structures mismatch occures errors will
come.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More C Interview Questions

Write a function that will take in a phone number and output all possible alphabetical combinations

0 Answers   Motorola,


What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

0 Answers   Aspire, Infogain,


write a c program that if the given number is prime, and their rearrangement(permute) of that number is also prime. Ex: Input is "197" is prime Output: 791,917,179 is also prime. Please any one tell me tha code for that

3 Answers  


What is the purpose of sprintf() function?

0 Answers  


c programs are converted into machine language with the help of a) an interpreter b) a compiler c) an operatinf system d) none of the above

0 Answers  






What is the difference between %d and %i?

0 Answers  


suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan

1 Answers  


what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 Answers  


let's take a code struct FAQ { int a; char b; float c; double d; int a[10]; }*temp; now explain me how the memory will be allocated for the structure FAQ and what address will be in the structure pointer (temp)....................

8 Answers  


When a c file is executed there are many files that are automatically opened what are they files?

0 Answers  


Is a house a mass structure?

0 Answers  


Where static variables are stored in memory in c?

0 Answers  


Categories