what is Loop function? What are different types of Loops?
No Answer is Posted For this Question
Be the First to Post Answer
List down the guideline that should be followed while using friend function.
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.
3- Write a program to find larger and smaller of the two numbers.
List the advantages of inheritance.
How to tokenize a string in c++?
How would you differentiate between a pre and post increment operators while overloading?
class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;
I want explanation for this assignment: how to connect mysql database using c/c++,please explain this detailly?
What is helper in c++?
What is an inline function in c++?
What is static class data?
What is a storage class? Mention the storage classes in c++.