declare an array of structure where the members of the
structure are integer variable float variable integer array
char variable access all elements of the structure using dot
operator and this pointer operator
Explain 'this' pointer and what would happen if a pointer is deleted twice?
Explain method of creating object in C++ ?
Consider a c++ template funtion template<class T> T& Add(T a, T b){return a+b ;} if this function is called as T c = Add("SAM", "SUNG"); what will happen? What is the problem in the template declaration/ How to solve the problem.
What is the difference between a type-specific template friend class and a general template friend class?
Define a program that reads two matrices of size 3x3 with real values from the user then prints their sum, difference and multiplication.
Is c++ proprietary?
Can we change the basic meaning of an operator in c++?
When should I use unitbuf flag?
What is the difference between "overloading" and "overridding"?
What does it mean to declare a member variable as static?
Why pointer is used in c++?
What is a storage class in C++