Is there any difference between dlearations int* x and int
*x? If so tell me the difference?
Answer Posted / sandy
NO difference
Case 1:
int* x,y,z;
and
Case2:
int *x,y,z;
these two cases are also exactly same.
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
What is a static element?
What are disadvantages of pointers?
Describe linkages and types of linkages?
Is c++ pass by reference or value?
What is the insertion operator and what does it do?
What is std :: flush?
Should I learn c or c++ first?
How can a called function determine the number of arguments that have been passed to it?
What is pointer in c++ with example?
What is a unnitialised pointer?
Is c++ built on c?
what is a class? Explain with an example.
What are move semantics?
What does flush do?
What can I use instead of namespace std?