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
Is empty stack c++?
Write a program which uses Command Line Arguments
Differentiate between a constructor and a method in C++.
Can java be faster than c++?
What is an accessor in c++?
Why iomanip is used in c++?
What is a literal in c++?
Which is the best c++ compiler?
Explain operator overloading.
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create
What are the unique features of C++.
What are proxy objects in c++?
Briefly describe a B+ tree. What is bulk loading in it?
What do you mean by volatile and mutable keywords used in c++?
What are references in c++?