What is the difference between int* ptr;
and int *ptr;
?
I am doing a C++ linked list project, and I wish to know the difference between the two statements above.
What is the difference between int* ptr;
and int *ptr;
?
I am doing a C++ linked list project, and I wish to know the difference between the two statements above.