What are single and multiple inheritances in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Explain about profiling?
Can you think of a situation where your program would crash without reaching the breakball, which you set at the beginning of main()?
Can non graphic characters be used and processed in C++?
What are Virtual Functions? How to implement virtual functions in "C" ?
Explain about templates of C++.
What is lambda expression c++?
C++ program output? Explain output of this program. #include <iostream> using std::cout; using std::cin; int main() { cout<<cout<<' '; cout<<cin; return 0; } It prints some address in hexadecimal. what is it?
What are default parameters? How are they evaluated in c++ function?
What is ios :: in in c++?
Describe about storage allocation and scope of global, extern, static, local and register variables?
What are single and multiple inheritances in c++?
Problem 6: Area of a trapezoid can be calculated by the following formula: A=(b1 b2)×h2 where b1 and b2 are the parallel sides or the bases and h is length of height Write a C code of this program