Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is difference between initialization and assignment?

Answers were Sorted based on User's Feedback



What is difference between initialization and assignment?..

Answer / 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

What is difference between initialization and assignment?..

Answer / jaroosh

Those answers are actually highly insufficient.
Here are some differences to point that come to my mind :
a) you CANT assign to a const variable, whereas you CAN
initialize it. For example :
const AXC d = 3; //OK! initialization
d = 3; //WRONG! cannot assign to const
b) initialization IS about creating object
assignment IS about setting some value to object
This is why in the following code :
AXC d = 3;
AXC x;
x = 2;
first line will require an appropriate constructor:
AXC(int i) { ... }
whereas the third line will use overloaded assignment "="
operator if its specified (if not, it will use constructor
like above):
AXC operator =(int x) { ... }
c) Initialization also calls copy constructors, while
assignment does not :
A c;
A d = c; //Calls copy constructor of A
A e;
e = c; //Calls assignment operator of A

Is This Answer Correct ?    71 Yes 5 No

What is difference between initialization and assignment?..

Answer / zuber

Initialization can be can be done at the time of
declaration where as assiginment can be done anywhere

Is This Answer Correct ?    55 Yes 11 No

What is difference between initialization and assignment?..

Answer / hariharan,k

initialization mean's to initilise a variable.
assignment mean's assign value to a variable.

Is This Answer Correct ?    73 Yes 41 No

What is difference between initialization and assignment?..

Answer / suraj

Initialization is a type of assignment done at declaration
level, but assinment can be done anywhere.

Is This Answer Correct ?    23 Yes 4 No

What is difference between initialization and assignment?..

Answer / lucky

Some defference between Initialization and assignment
Initialization means whenever we initialize any var. at
declaration time.So as we initialize var. in init() in java
programming.For i.e.
prblic init()
{
int a=10;
}
Assignment means whenever we assigne any value in any var.
except const. variable.For i.e.
int a,b;
a=15; //right
b=a; //right
const c;
c=10 or c=a; //Worng
const d=20; //that is initialization

Is This Answer Correct ?    22 Yes 7 No

What is difference between initialization and assignment?..

Answer / njk

455

Is This Answer Correct ?    5 Yes 1 No

What is difference between initialization and assignment?..

Answer / sandeep mannarakkal

All object creation involves two steps,
1) Memory allocation
2) Memory initialization , so initialization is a part of object creation itself.
Assignment is the process of assigning values in to already available object.
Hope the concept is clear

Is This Answer Correct ?    4 Yes 0 No

What is difference between initialization and assignment?..

Answer / sweety

Initialization does the memory allocation, i.e. it assigns
the emory to the variable whereas assignment assigns a
value to the variable.

Is This Answer Correct ?    15 Yes 16 No

What is difference between initialization and assignment?..

Answer / adeolu

initialization is the first assignment value given to a
variable while assignment is the subsequent value giving to
the program variable

Is This Answer Correct ?    2 Yes 7 No

Post New Answer

More C++ General Interview Questions

What are advantages of using friend classes?

0 Answers  


What are containers in c++?

0 Answers  


What is tellg () in c++?

0 Answers  


What are shallow and deep copies?

0 Answers  


What are libraries in c++?

0 Answers  


How can you tell what shell you are running on unix system?

0 Answers  


What is a modifier in c++?

0 Answers  


what is software cycle? What is a mission critical system ? What is the important aspect of a real-time system ? Explain the difference between microkernel and macro kernel. Give an example of microkernel.Why paging is used ? Which is the best page replacement algo and Why ? What is software life cycle ? How much time is spent usually in each phases and why Which one do U want to work if selected in Honeywell ? Which are the different types of testing ? What is a distributed system ? Some questions about CSP. Which languages do U know ? What are the differences between Pascal and C. questions from Compiler construction and Lisp. Which are the different computer architecture? What is the requirement in MIMD ? What is the difference between RISC and CISC processors ? Difference between loosely coupled and tightly coupled systems ? What is an open system?

0 Answers   Honeywell,


What is the best c++ ide?

0 Answers  


What is istream and ostream in c++?

0 Answers  


What is the difference between stack and heap memory?

1 Answers  


What is the use of volatile keyword in c++? Give an example.

1 Answers  


Categories