Answer Posted / hr@tgksolutions.com
A function that calls itself in response to a terminating condition is said to be recursive.
Because it employs LIFO, the stack data structure is used.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Distinguish between a # include and #define.
write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;
Define friend function.
What is a friend function in c++?
Where the memory to the static variables is allocated?
What is pair in c++?
Do inline functions improve performance?
What is virtual base class?
What is ifstream c++?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---
Explain public, protected, private in c++?
What does it mean to declare a destructor as static?
Explain virtual class and friend class.
explain the reference variable in c++?