What is srand c++?
No Answer is Posted For this Question
Be the First to Post Answer
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Can class objects be passed as function arguments?
What are containers in c++?
What is the best c++ book for beginners?
"How will you merge these two arrays? Write the program Array: A 1 18 22 43 Array: B 3 4 6 20 34 46 55 Output Array: C 1 3 4 6 18 20 22 34 43 46 55"
9 Answers College School Exams Tests, HCL,
How do you clear a map in c++?
What does it mean to declare a member function as virtual?
When should I use unitbuf flag?
Which one is better- macro or function?
How to construct muliton object
Out of fgets() and gets() which function is safe to use?
Write a program for Divide a number with 2 and Print the output ( NOTE: Check for divide by zero error).