What is the basic concept of c++?


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

Post New Answer

More C++ General Interview Questions

Can malloc be used in c++?

0 Answers  


Do vectors start at 0 c++?

0 Answers  


Can I run c program in turbo c++?

0 Answers  


Can inline functions have a recursion? Give the reason?

3 Answers  


What is an opaque pointer?

1 Answers  






Explain one method to process an entire string as one unit?

0 Answers  


Can we make copy constructor private in c++?

0 Answers  


Write about the members that a derived class can add?

0 Answers  


Can we run c program in turbo c++?

0 Answers  


Write a program to find the Fibonacci series recursively.

0 Answers   Huawei,


How to write Multithreaded applications using C++?

2 Answers   Honeywell, TCS, Wipro,


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


Categories