What are the differences between malloc() and calloc()?
No Answer is Posted For this Question
Be the First to Post Answer
What is the importance of mutable keyword?
Is c++ slower than c?
What is an adaptor class or wrapper class in c++?
Write a c++ code that will calculate the roots of a quadratic equation a2+ bx+c=0 Hint: d = sqrt (b2-4ac), and the roots are: x1 = (€“b + d)/2a and x2 = (€“b €“ d)/2a (use sqrt function from cmath.h )?
What are the total number of lines written by you in C/C++? What is the most complicated or valuable program written in C/C++?
When a function is made inline. Write the situation where inline functions may not work.
How do you declare a set in c++?
What information can an exception contain?
What is vector processing?
Can a program run without main?
How does throwing and catching exceptions differ from using setjmp and longjmp?
You have to take 2 arrays of length 10. Input the values of array 1 from the user. Then copy the values of array 1 to array 2 in ascending order For example if user enters 9, 5, 6, 8, 1, 0, 2, 7, 4, 3 then copy the smallest element i.e. 0 first followed by 1, 2 and so