What is difference between initialization and assignment?
Answers were Sorted based on User's Feedback
Answer / rahul rasal
Simple Word In my Word..
Initilize:
E.g:
int i;
Assign:
E.g:
int i=30;
Is it Right...?
| Is This Answer Correct ? | 3 Yes | 8 No |
Answer / shweta iyer
In initialization, we provide the variable with some initial values which can be changed later. But in assignment, we provide the variable with a fixed value which remains same throughout the whole program.
| Is This Answer Correct ? | 8 Yes | 14 No |
Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers
Explain what is polymorphism in c++?
What are advantages and disadvantages of Design patterns?
Write a program to find the Fibonacci series recursively.
write a C++ programming using for loop: * * * * * * * * * *
What is ostream in c++?
Describe linkages and types of linkages?
Which software is used for c++ programming?
Mention the ways in which parameterized can be invoked. Give an example of each.
Can we declare a base-class destructor as virtual?
Define whitespace in C++.
What are c++ storage classes?