What is a static member?
No Answer is Posted For this Question
Be the First to Post Answer
What is time h in c++?
int main() { int i ,a[i]; i = 0; a[i] = 10; cout<< a[i] << endl; return 0; } What will be output of this program?
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.
Explain data encapsulation?
What are static member functions?
What is a try block?
How important is c++?
What is the oldest programming language?
what is data encapsulation in C++?
Differences between private, protected and public and give examples.
Why do we need templates?
Who calls main function?