What is c++ w3school?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

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.

1 Answers  


Which sort does c++ use?

0 Answers  


What is a base class?

0 Answers  


What flag means?

0 Answers  


What are the four main data types?

0 Answers  






What is functions syntax in c++?

0 Answers  


Explain the operation of overloading of an assignment operator.

0 Answers  


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 )?

0 Answers   Maxobiz,


What are different types of typecasting supported by C++

1 Answers   CA,


why all c++ program must have default constructor?

6 Answers   IBM,


write a programming using for loop in c++ to generate diamond trangel?

1 Answers   NIIT,


What's the order in which the local objects are destructed?

0 Answers  


Categories