What language does google use?
No Answer is Posted For this Question
Be the First to Post Answer
Differentiate between a constructor and a method in C++.
In c++, what is the difference between method overloading and method overriding?
What is Destructor 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 and all can a compiler provides by default?
Write a program and call it sortcheck.cpp which receives 10 numbers from input and checks whether these numbers are in ascending order or not. You are not allowed to use arrays. You should not define more than three variables
What is singleton class in c++?
What is #include sstream?
make a middle node of doubly linklist to the top of the list
Is string data type in c++?
Can comments be longer than one line?
Design a program to input a date from user in the form day/month/year (e.g. 2/6/2000) and report whether it’s a valid date or not. The program should take account of leap years. You will need to know that a leap year is a year that is exactly divisible by 4, except that century years are only leap years if they are divisible by 400.