What's a good way to check for "close enough" floating-point equality?
No Answer is Posted For this Question
Be the First to Post Answer
What are the advantages of using linked list for tree construction?
Is r written in c?
Is c++ based on c?
How to reverse a string using a recursive function, without swapping or using an extra memory?
31 Answers Cisco, Mind Tree, Motorola, Ophio, Sony, TCS, Wipro,
What is the Lvalue and Rvalue?
What are keywords in c with examples?
can u write a program in C, which does not use = (eqaul)or any arithmatic assignment(like -=,+=,*= etc) operator to swap to number?
When c language was developed?
Write a program to find the smallest and largest element in a given array in c language
What is pragma in c?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....