Is there any difference between dlearations int* x and int
*x? If so tell me the difference?
Answer Posted / steve
I think there is no difference.
Also,
Case 1:
int* x,y,z;
and
Case2:
int *x,y,z;
these two cases are exactly same.
In both cases, y and z are not pointers. They are int.
| Is This Answer Correct ? | 32 Yes | 4 No |
Post New Answer View All Answers
what is Member Functions in Classes?
What is a .h file c++?
Explain the advantages of using friend classes.
What does asterisk mean in c++?
What is a tree in c++?
What is c++ coding?
What are the benefits of operator overloading?
Is c++ a high level language?
Explain queue. How it can be implemented?
What are the differences between new and malloc?
Which programming language should I learn first?
What is meant by a delegate?
Implement stack operations with pointers with appropriate exception checks.
Do you know what are static and dynamic type checking?
Difference between Abstraction and encapsulation in C++?