Why do we use the using declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C++ program that asks the user to choose a number between 1 and 1000. Then, your program should be able to guess the number by asking the user no more than 10 yes/no questions. Use a while loop in your program
What is the type of this pointer in c++?
Find the second maximum in an array?
Which is the best c++ compiler for beginners?
Can member functions be private?
What is the average salary of a c++ programmer?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
Are php strings immutable?
Which ide is best for c++?
What happens when a function throws an exception that was not specified by an exception specification for this function?
What is static function and static class?
What is pointer with example?