Write a program in "C" to calculate the root of a quadratic
equation ax^2+bx+c=0, where the value of a,b & c are known.
No Answer is Posted For this Question
Be the First to Post Answer
What is extern keyword in c?
Why does notstrcat(string, "!");Work?
Write a code to generate a series where the next element is the sum of last k terms.
write a c/c++ programthat connects to a MYSQL server and checks if the INNoDB plug in is installed on it.If so your program should print the total number of disk writes by MYSQL.
if we take a number as a char then can we manipulate(add, subtract) on this number
what is the difference between c and java?
why we need function pointers?
int main() { int days; printf("enter days you are late"); scanf("%d",days); if (days<=5) printf("5o paisa fine"); if (days<=10&&days>=6) printf("1rs fine"); if(days>10) printf("10 rs fine"); if(days=30) printf("membership cancelled"); return 0; } tell me whats wrong in this program? is it right?
write a program to print calender using for loop.
Explain how can you be sure that a program follows the ansi c standard?
What does d mean?
What is the difference between procedural and functional programming?