A pointer is a variable that stores the memory address of another variable as its value.
(একটি পয়েন্টার হল একটি ভেরিয়েবল যা অন্য ভেরিয়েবলের মেমরি অ্যাড্রেস তার মান হিসাবে সংরক্ষণ করে।)
pointer variable declare by asterisk(*) sign.
Syntax: dataType * variableName;
Output:
Note: The memory address is the location of where the variable is stored on the computer. (মেমরি অ্যাড্রেস হল সেই অবস্থান যেখানে ভেরিয়েবলটি কম্পিউটারে সংরক্ষণ করা হয়।)