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 a multiset c++?
Is there finally in c++?
Briefly describe a B+ tree. What is bulk loading in it?
Write about the use of the virtual destructor?
What is singleton class in c++?
What is the c++ programming language used for?
What ANSI C++ function clears the screen a) clrscr() b) clear() c) Its not defined by the ANSI C++ standard
What is the oldest programming language?
write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;
What jobs can you get with a c++ certification?
why is c++ called oops? Explain
What is a sequence in c++?
How are the features of c++ different from c?
Explain what data encapsulation is in c++?
In a function declaration, what does extern mean?