write a program to find out roots of quadratic equation
"x=-b+-(b^2-4ac0^-1/2/2a"

Answers were Sorted based on User's Feedback



write a program to find out roots of quadratic equation "x=-b+-(b^2-4ac0^-1/2/2a"..

Answer / moolshankershukla

this quadratic equation is not well formet . this is wrong
formet.

Is This Answer Correct ?    9 Yes 0 No

write a program to find out roots of quadratic equation "x=-b+-(b^2-4ac0^-1/2/2a"..

Answer / sanjay kumar

this quadratic equation is well formet . this is wrong
formet.

Is This Answer Correct ?    3 Yes 1 No

Post New Answer

More C Code Interview Questions

main() { int i =10, j = 20; clrscr(); printf("%d, %d, ", j-- , --i); printf("%d, %d ", j++ , ++i); } a. 20, 10, 20, 10 b. 20, 9, 20, 10 c. 20, 9, 19, 10 d. 19, 9, 20, 10

4 Answers   HCL,


main() { signed int bit=512, mBit; { mBit = ~bit; bit = bit & ~bit ; printf("%d %d", bit, mBit); } } a. 0, 0 b. 0, 513 c. 512, 0 d. 0, -513

3 Answers   HCL, Logical Computers,


main() { main(); }

1 Answers  


how to return a multiple value from a function?

2 Answers   Wipro,


Write a Program in 'C' To Insert a Unique Number Only. (Hint: Just Like a Primary Key Numbers In Database.) Please Some One Suggest Me a Better Solution for This question ??

0 Answers   Home,






why is printf("%d %d %d",i++,--i,i--);

4 Answers   Apple, Cynity, TCS,


int aaa() {printf(“Hi”);} int bbb(){printf(“hello”);} iny ccc(){printf(“bye”);} main() { int ( * ptr[3]) (); ptr[0] = aaa; ptr[1] = bbb; ptr[2] =ccc; ptr[2](); }

1 Answers  


what is the code of the output of print the 10 fibonacci number series

2 Answers  


#define a 10 int main() { printf("%d..",a); foo(); printf("%d..",a); return 0; } void foo() { #undef a #define a 50 }

3 Answers  


main() { char * strA; char * strB = I am OK; memcpy( strA, strB, 6); } a. Runtime error. b. I am OK c. Compile error d. I am O

4 Answers   HCL,


main(int argc, char **argv) { printf("enter the character"); getchar(); sum(argv[1],argv[2]); } sum(num1,num2) int num1,num2; { return num1+num2; }

1 Answers  


What are segment and offset addresses?

2 Answers   Infosys,


Categories