how to declare a pointer
Answers
Answered by
1
Pointers must be declared before they are used type * ptr the syntax to declaring a pointer is to put an asterix infront of your pointer either of these is ok;
type* ptr
type *ptr
type * ptr
Similar questions