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


Please Help Members By Posting Answers For Below Questions

Can a constructor be private?

577


How would you use the functions randomize() and random()?

627


What is new in c++?

576


Is c++ free?

580


What do you understand by zombie objects in c++?

613






What is data type in c++?

559


What is a hash function c++?

554


Can static member variables be private?

626


What are the two types of polymorphism?

591


. If employee B is the boss of A and C is the boss of B and D is the boss of C and E is the boss of D. Then write a program using the Database such that if an employee name is Asked to Display it also display his bosses with his name. For eg. If C is displayed it should also display D and E with C?

2753


How many types of modularization are there in c++?

564


What are destructors?

571


Are vectors passed by reference c++?

517


Why struct is used in c++?

620


What is the use of namespace std in C++?

617