What is data type in c++?
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to swap 2 chars without using a third varable? char *s = "A"; char *p = "B";
What is the difference between global variables and local variable
What is a "Copy Constructor"?
Can we make any program in c++ without using any header file and what is the shortest program in c++.
Profiler in projects?
Explain selection sorting?
What is the basic difference between C and C++?
What is purpose of abstract class?
Write a note about the virtual member function?
We all know that a const variable needs to be initialized at the time of declaration. Then how come the program given below runs properly even when we have not initialized p?
Discuss the effects occur, after an exception thrown by a member function is unspecified by an exception specification?
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; }