Find the second largest element in an array with minimum no of comparisons and give the minimum no of comparisons needed on an array of size N to do the same.
List some of the dynamic data structures in C?
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
Why #include is used in c language?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Explain how does flowchart help in writing a program?
Is anything faster than c?
What do you mean by keywords in c?
What is the difference between a structure and a union?
What are different types of operators?
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=?
How to add two numbers with using function?
Write a program to find factorial of a number using recursive function.