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 to implement variable argument functions ?
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
What is linear search?
Is c dynamically typed?
a 'c' program to tell that the set of three coordinates lie on a same line
What is the scope of an external variable in c?
how will you write a program on linked lists using JAVA programming???????????
How does the assert() function work?
how can f be used for both float and double arguments in printf? Are not they different types?
how can we print hellow world programme without using semicolon
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.