Is c++ a good beginners programming language?
No Answer is Posted For this Question
Be the First to Post Answer
What are c++ storage classes?
How do I use arrays in c++?
Problem 5: Hero's Formula is A method for calculating the area of a triangle when you know the lengths of all three sides. Let a, b, c be the lengths of the sides of a triangle. The area is given by:A= pp-ap-b(p-c) | wherep= a+b+c2 | | Write a C-language code to calculate area of triangle using above method. Take the three lengths of the triangle from the user and display the area that your program calculates.
What are the c++ access specifiers?
How const functions will be treated by compiler?
What is null pointer and void pointer?
How is modularity introduced in C++?
When one must use recursion function? Mention what happens when recursion functions are declared inline?
What are templates? where we should use it?
What is size of empty class object
What is a loop? What are different types of loops in c++?
Is recursion allowed in inline functions?