use ster when declaring variables cpp code example
Example: use ster when declaring variables cpp
int *i //means the value to which i points is an integer.
char **p //means that p is a pointer which is itself a pointer to a char.
int *i //means the value to which i points is an integer.
char **p //means that p is a pointer which is itself a pointer to a char.