Is there any difference between dlearations int* x and int
*x? If so tell me the difference?
Answer Posted / kris
yeah no difference, only matters if we declare 2 or more
variables in the int* a,b,c kind of thing,
chai
| Is This Answer Correct ? | 0 Yes | 10 No |
Post New Answer View All Answers
How can you say that a template is better than a base class?
What is the full form of stl in c++?
What is the difference between global variables and local variable
Which bit wise operator is suitable for turning off a particular bit in a number?
Can a program run without main in c++?
what is a class? Explain with an example.
What is the C-style character string?
What are the sizes and ranges of the basic c++ data types?
Is string data type in c++?
Can you overload the operator+ for short integers?
Which c++ compiler is best?
Refer to a name of class or function that is defined within a namespace?
What is the difference between function overloading and operator overloading?
What is the use of object in c++?
Which of the following is not a valid declaration for main() a) int main() b) int main(int argc, char *argv[]) c) They both work