Computer Science, asked by triptigupta12340, 2 months ago

what is syntax of a pointer?​

Answers

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