develop algorithms to add polynomials (i) in one variable
No Answer is Posted For this Question
Be the First to Post Answer
What is strcpy() function?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Describe advantages and disadvantages of the various stock sorting algorithms
A woman had somany gloves and hats 22 red,34 blue, 45 white...there was power cut and she took a glove and how many gloves shud she take so that she gets a pair of glove fr each color??
f=(x>y)?x:y a) f points to max of x and y b) f points to min of x and y c)error
write a program to find the largest and second largest integer from an array
the number 138 is called well ordered number because the three digits in the number (1,3,8) increase from left to right (1<3<8). the number 365 is not well ordered coz 6 is larger than 5. write a program that wull find and display all possible three digit well ordered numbers. sample: 123,124,125,126,127,128,129,134 ,135,136,137,138,139,145,146,147 148 149,156.......789
how to find anagram without using string functions using only loops in c programming
Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
What are preprocessor directives?