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
How can I set an array's size at run time?
Process by which one bit pattern in to another by bit wise operation is?
Explain what is the concatenation operator?
How to add two numbers without using arithmetic operators?
18 Answers College School Exams Tests, e track, Infosys, Pan Parag, Sapient, TCS,
What is local and global variable in c?
C program to read the integer and calculate sum and average using single dimensional array
What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
wats the diference btwen constant pointer and pointer to a constant.pls give examples.
how to print "hai" in c?
What is d'n in c?
what is the output of following question? void main() { int i=0,a[3]; a[i]=i++; printf("%d",a[i] }
fn f(x) { if(x<=0) return; else f(x-1)+x; }