What is the difference between C and CPP?
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];
Explain the differences between list x; & list x();.
write a c++ program to create class student having datamember name,Roll_no,age,and branch intilcization all the member using constructor print the all the details on the screen.
What is a constant reference?
What is the difference in size of this two clasees? Class A { int a; char c; float f; } Class B { float f; char c; int a; }
What is the difference between inline functions and macros?
What do you mean by funtion prototype?
How to write a program such that it will delete itself after exectution?
What does #define mean in c++?
Describe friend function & its advantages.
what is smart pointer & use of the smart pointer ???
What do you mean by overhead in c++?