what is syntax of a pointer?
Answers
Answered by
1
Answer:
The syntax of declaring a pointer is to place a * in front of the name. A pointer is associated with a type (such as int and double ) too. type *ptr; // Declare a pointer variable called ptr as a pointer of type // or type* ptr; // or type * ptr; // I shall adopt this convention.
Similar questions