⟩ What is the scope of the variable declared in the user definied function? a) whole program b) only inside the {} block c) both a and b d) none of the mentioned
b) only inside the {} block
b) only inside the {} block
Do you know who designed C++ programming language?
Explain is it possible to have a recursive inline function?
Tell me how can a C function be called in a C++ program?
Tell us can we use malloc() function of C language to allocate dynamic memory in C++?
Tell us how to make sure a C++ function can be called as e.g. void foo(int, int) but not as any other type like void foo(long, long)?
Do you know what is the role of mutable storage class specifier?
Explain me what will i and j equal after the code below is executed? Explain your answer. int i = 5; int j = i++;?
Explain how to create a reference variable in C++?
Tell us why pure virtual functions are used if they don't have implementation / When does a pure virtual function become useful?
Explain what is 'Copy Constructor' and when it is called?