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 singleton class in c++?
Explain the pure virtual functions?
Write about the local class and mention its use?
What is the use of endl in c++ give an example?
What are the four partitions in which c++ compiler divides the ram?
What is lvalue?
Is there a sort function in c++?
Explain linked list using c++ with an example?
Describe private, protected and public?
What is a null object in c++?
Define linked lists with the help of an example.
What is the output of the following program? Why?
What are the advantages of pointers?
Can a function take variable length arguments, if yes, how?
What is a dll entry point?