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
How do I make turbo c++ full screen?
What character terminates all character array strings a) b) . c) END
What is const in c++?
Explain the difference between static and dynamic binding of functions?
How do I tokenize a string in c++?
What is the use of data hiding?
What is the use of setprecision in c++?
Explain 'this' pointer and what would happen if a pointer is deleted twice?
Explain virtual class and friend class.
Write bites in Turbo c++ Header ("Include") Files.
Why do we use the using declaration?
Program to check whether a word is a sub-string or not of a string typed
What is the latest c++ standard?
What causes a runtime error c++?
What is a catch statement?