What is the latest c++ standard?


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

Post New Answer

More C++ General Interview Questions

Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.

4 Answers   Webyog,


Will this c++ program execute or not?

0 Answers  


What is the use of string in c++?

0 Answers  


Which of the following operator cannot be overloaded?

2 Answers   TCL,


What is the role of static keyword for a class member variable?

0 Answers  






Explain stack & heap objects?

0 Answers  


What is :: operator in c++?

0 Answers  


What are built-in functions? What is the syntax for the definition?

0 Answers  


What is data abstraction? How is it different from data encapsulation?

0 Answers  


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,


What is difference between n and endl in c++?

0 Answers  


What is a storage class?

0 Answers  


Categories