What are the data types in c++?
No Answer is Posted For this Question
Be the First to Post Answer
How a new element can be added or pushed in a stack?
What is a pointer with example?
If you don’t declare a return value, what type of return value is assumed?
Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);
What are the advantages of using a pointer? Define the operators that can be used with a pointer.
Explain friend class?
What is #include sstream?
What is the difference between structures and unions?
1.Between 100 and 999 are some numbers that have the characteristics that if you cube the individual digits and sum together you will get the same number. 2. A program that can accept as input an integer and output the equivalent of that number in words.
Define Virtual function in C++.
Is c# written in c++?
What are different types of typecasting supported by C++