কম্পিউটার

কিভাবে C/C++ এ পয়েন্টার ভেরিয়েবল ঘোষণা করবেন?


ভেরিয়েবলের ঠিকানা সংরক্ষণ করতে একটি পয়েন্টার ব্যবহার করা হয়। C/C++ এ পয়েন্টার ভেরিয়েবল ঘোষণা করতে, একটি তারকাচিহ্ন (*) এর নামের আগে ব্যবহৃত হয়।

ঘোষণা

*pointer_name

C তে

উদাহরণ

#include <stdio.h>
int main() {
   // A normal integer variable
   int a = 7;
   // A pointer variable that holds address of a.
   int *p = &a;
   // Value stored is value of variable "a"
   printf("Value of Variable : %d\n", *p);
   //it will print the address of the variable "a"
   printf("Address of Variable : %p\n", p);
   // reassign the value.
   *p = 6;
   printf("Value of the variable is now: %d\n", *p);
   return 0;
}

আউটপুট

Value of Variable : 7
Address of Variable : 0x6ffe34
Value of the variable is now: 6

C++ এ

উদাহরণ

#include <iostream>
using namespace std;
int main() {
   // A normal integer variable
   int a = 7;
   // A pointer variable that holds address of a.
   int *p = &a;
   // Value stored is value of variable "a"
   cout<<"Value of Variable : "<<*p<<endl;
   //it will print the address of the variable "a"
   cout<<"Address of Variable : "<<p<<endl;
   // reassign the value.
   *p = 6;
   cout<<"Value of the variable is now: "<<*p<<endl;
   return 0;
}

আউটপুট

Value of Variable : 7
Address of Variable : 0x6ffe34
Value of the variable is now: 6

  1. কিভাবে C++ এ ভেরিয়েবল এবং কনস্ট্যান্ট তৈরি করবেন?

  2. C++ এ পয়েন্টার অপারেটর * কি?

  3. কিভাবে C# এ ভেরিয়েবল শুরু করবেন?

  4. পাইথনে ভেরিয়েবলের মান কিভাবে বরাদ্দ করা যায়