Meaning of DATATYPE INT*

what is the meaning of int* datatype

Hello @Bhavit_Singla,

‘*’ indicates the compiler that the variable defined is a pointer.
In simple words, to differentiate between pointers and normal variables.

So, int* means that a pointer variable to store(point) the address of another variable of type integer.
Example:
int x;
//x is a variable of type int
int * x_ptr=&x;
//x_ptr is a pointer which points to the address of variable x, which is of int type

Hope, this would help.
Give a like, if you are satisfied.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.