What is the best c c++ compiler for windows?
No Answer is Posted For this Question
Be the First to Post Answer
If we declare two macro with the same identifier without doing undef the first, what will be the result? eg: #define MAX_SIZE 100 #define MAX_SIZE 200 int table1[MAX_SIZE];
What are the implicit member functions of class?
How the keyword struct is different from the keyword class in c++?
When do we use copy constructors?
what is data abstraction in C++?
What is the output of the following program? Why?
What is using namespace std in c++?
Why namespace is used in c++?
#include<iostream.h> void main() { class x { public: int func(int) { cout<<"cool"; return 1; } } }
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work
what do you mean by volatile variable?
Does c++ support multilevel and multiple inheritances?