How reliable are floating-point comparisons?
No Answer is Posted For this Question
Be the First to Post Answer
Was 2000 a leap year?
What does %c mean in c?
Prove or disprove P!=NP.
Explain the bubble sort algorithm.
What are the types of pointers?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none
write a program in c to find out the sum of digits of a number.but here is a condition that compiler sums the value from left to right....not right to left..
if a is an integer variable, a=5/2; will return a value a) 2.5 b) 3 c) 2 d) 0
atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation
what different between c and c++
What is the modulus operator?
Write a program to print factorial of given number using recursion?