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
When is the destructor called?
What is the outcome of cout< a) 16 b) 17 c) 16.5
What is std :: flush?
What is a base class?
What gives the current position of the put pointer?
What does the linker do?
What's the order in which the local objects are destructed?
What is a string example?
What doescout<<(0==0) print out a) 0 b) 1 c) Compiler error: Lvalue required
Why do we use templates?
Can we specify variable field width in a scanf() format string? If possible how?
What is constructor c++?
What is the use of lambda in c++?
How many types of scopes are there in c++?
Can create new c++ operators?