What is difference between initialization and assignment?
Answer Posted / janet
Assignment can be done as many times as desired where as
initialization can be done only once.
| Is This Answer Correct ? | 166 Yes | 24 No |
Post New Answer View All Answers
How do I write a c++ program?
What is the real purpose of class – to export data?
Define what is constructor?
What is an adaptor class in c++?
If I is an integer variable, which is faster ++i or i++?
What are inline functions? What is the syntax for defining an inline function?
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
Explain the purpose of the keyword volatile.
What is type of 'this' pointer? Explain when it is get created?
What do you mean by inheritance in c++?
What is the difference between the indirection operator and the address of oper-ator?
What jobs can you get with a c++ certification?
What is #include cmath?
What is the default width for ouputting a long integer using the insertion operator?
Can a Structure contain a Pointer to itself?