What is floating point exception error? And what are
different types of errors occur during compile time and run
time? why they occur?
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 |
could u able to tell about suresoft technical session
How does #define work?
How do I copy files?
What is meant by gets in c?
What is the difference between null pointer and wild pointer?
Is there any data type in c with variable size?
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
2 Answers HCL, IBM, Satyam, Vimal, Vimukti Technologies,
What is the value of uninitialized variable in c?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??