what is friend function in C++?
No Answer is Posted For this Question
Be the First to Post Answer
What is name mangling/name decoration?
There is a base class sub, with a member function fnsub(). There are two classes super1 and super2 which are sub classes of the base class sub.if and pointer object is created of the class sub which points to any of the two classes super1 and super2, if fnsub() is called which one will be inoked?
How does stack look in function calls? When does stack overflow? What can you do to remedy it?
How to input string in C++
Describe the different styles of function prototypes in C++.
Identify the error in the following program. #include<iostream.h> void main() { int i = 0; i = i + 1; cout « i « " "; /*comment *//i = i + 1; cout << i; }
How will you print a list of all unique words from a string which may contain repeated words?
Discuss the role of C++ shorthands.
What are the advantages/disadvantages of using inline and const?
How does stack look in function calls? Write a recursive function call, how will the stack look like?
Tell How To Check Whether A Linked List Is Circular ?
What is C++11?