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 does java differ from c and c++?
Explain polymorphism?
What is public, protected, private in c++?
What are references in c++?
Is c++ free?
When is the copy constructor called?
What is a terminating character in c++?
Why main function is special in c++?
How is c++ used in the real world?
What is increment operator in c++?
What is heap sort in c++?
How do you decide which integer type to use?
What is a dll entry point?
Which is the best c++ software?
Can we use clrscr in c++?