Computer Science, asked by surya518, 1 year ago

how to declare a pointer

Answers

Answered by clue
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