diff between pointer and reference in c++?
Answer / ravi.g
pointers have valid memory but reference does not have
memory
It means pointers points to some address(memory)
Reference does not points to any address(memory)
| Is This Answer Correct ? | 2 Yes | 0 No |
What can I use instead of namespace std?
What are files in c++?
Consider the following code fragment: int main(void) { int m = 4; mystery ( m ); mystery ( m ); printf("%d", m); return 0; } What is the output on the monitor if mystery is defined as follows ? void mystery (int m) { m = m+3; }
iam a fresher to Qt(GUI a c++ based framework software). i need to develop the basic applications on designer by drag and dropping mechanism...so pls send me the procedure to design applications?
What is meaning of in c++?
Tell me difference between constant pointer and pointer to a constant.
What is the purpose of the "delete" operator?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
Difference between class and structure.
Is main a class in c++?
What is function declaration in c++ with example?
Why do we use string in c++?