How reliable are floating-point comparisons?
No Answer is Posted For this Question
Be the First to Post Answer
What are near, far and huge pointers?
0 Answers Hexaware, Thomson Reuters, Virtusa,
What is dangling pointer in c?
What does c value mean?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
Explain how do you search data in a data file using random access method?
Give the Output : * * * * * * * * * *
what is reason of your company position's in india no. 1.
Does c have an equivalent to pascals with statement?
a formula,a series of steps,or well defined set of rules for solving a problem a) algorithem b) program c) erdiagram d) compiler
What is the best organizational structure?
Why are algorithms important in c program?
what is the Output? int a=4 b=3; printf("%d%d%d%d%d%d",a++,++a,a++,a++,++a,a++); printf("%d%d%d%d%d%d",b--,b--,--b,b--,--b,--b);