What is c++ iterator?
No Answer is Posted For this Question
Be the First to Post Answer
Explain the problem with overriding functions
What is format for defining a structure?
In c++, what is the difference between method overloading and method overriding?
What is a local variable?
1.what is the difference between software & package &application.
How do we implement inheritance in c++?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
What are the advantages of pointers?
Write about the stack unwinding?
Does there exist any other function which can be used to convert an integer or a float to a string?
What is "map" in STL?
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