Can you pass an array to a function in c++?
No Answer is Posted For this Question
Be the First to Post Answer
How the virtual functions maintain the call up?
Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)
write a programming using for loop in c++ to generate diamond trangel?
Should you pass exceptions by value or by reference?
Differentiate between a template class and class template?
Write about the use of the virtual destructor?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == ) y-= 7; else y = 8; if the value of x is 4 before the nested IFs are executed, what is the value of y after the nested IFs are executed?
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
Explain what is class definition in c++ ?
Difference between Constructors and static constructors?
Which is not a valid keyword a) public b) protected c) guarded
Explain terminate() function?