How do you initialize a string in c++?
why and when we can declar member fuction as a private in the class?
Write a C++ Program to Multiply two Numbers
Write a Program to find the largest of 4 no using macros.
What is the best c c++ compiler for windows?
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
Differentiate between a template class and class template in c++?
What is the difference between ++ count and count ++?
what are Access specifiers in C++ class? What are the types?
What is std :: flush?
What is the difference between std::vector and std::list
Can I learn c++ without c?