What is helper in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

Write a corrected statement in c++ so that the statement will work properly. x =+ 7;

2 Answers  


Define stacks. Provide an example where they are useful.

0 Answers  


Given the following function definition: int doit(int &x, int y, int &z) { x = 3*x; y = y + 5; z = x+y; return z - 4; } int a = 5, b = 7, c = 9, d = 11; d = doit(a,b,c);

2 Answers  


Differentiate between a pointer and a reference with respect to c++.

0 Answers  


What are the types of pointer?

0 Answers  






When copy constructor can be used?

4 Answers   Symphony,


How java is different from c and c++?

0 Answers  


What is the difference between #import and #include?

0 Answers  


What is an adjust field format flag?

0 Answers  


Write about a nested class and mention its use?

0 Answers  


When is the copy constructor called?

0 Answers  


Copy Linked List using recursive function?

2 Answers   Persistent,


Categories