What is difference between initialization and assignment?
Answer Posted / 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 |
Post New Answer View All Answers
What is decltype c++?
If you want to share several functions or variables in several files maitaining the consistency how would you share it?
How can you differentiate between inheritance and implementation in c++?
What is guard code in c++?
Should I learn c or c++ first?
How do c++ struct differs from the c++ class?
what are the iterator and generic algorithms.
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
Is there any difference between int [] a and int a [] in c++?
What is setw manipulator in c++?
How do I download c++?
Explain how a pointer to function can be declared in C++?
Does c++ have arraylist?
Explain linear search.
Reads in the size of a square from the screen; 2. Prints a hollow square of that size out of “-“, “|” and blanks on screen; 3. Prints the same hollow square onto a text file. Your program should work for squares of all side sizes between 1 and 20. --- │ │ │ │ │ │ ---