What is data type in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is Memory Alignment?
What is a tree in c++?
How can you quickly find the number of elements stored in a dynamic array?
1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v
What is an action class?
Should I learn c or c++ first?
What is the most common mistake on c++ and oo projects?
In a class, there is a reference or pointer of an object of another class embedded, and the memory is either allocated or assigned to the new object created for this class. In the constructor, parameters are passed to initialize the data members and the embedded object reference to get inialized. What measures or design change should be advised for proper destruction and avioding memory leaks, getting pointers dangling for the embedded object memory allocation? Please suggest.
What is a storage class in C++
how to swap two numbers with out using temp variable
12 Answers Global eProcure, TCS,
What gives the current position of the put pointer?
int *p = NULL; printf("%1d",p) ; what will be the output of this above code?