C言語を使用したポインターの概念を示します
ポインタは、別の変数のアドレスを格納する変数です。
ポインタの構文は次のとおりです-
pointer = &variable;
例
以下は、C言語を使用したポインターの概念のためのCプログラムです-
#include<stdio.h> void main(){ //Declaring variables and pointer// int a=2; int *p; //Declaring relation between variable and pointer// p=&a; //Printing required example statements// printf("Size of the integer is %d\n",sizeof (int));//4// printf("Address of %d is %d\n",a,p);//Address value// printf("Value of %d is %d\n",a,*p);//2// printf("Value of next address location of %d is %d\n",a,*(p+1));//Garbage value from (p+1) address// printf("Address of next address location of %d is %d\n",a,(p+1));//Address value +4// //Typecasting the pointer// //Initializing and declaring character data type// //a=2 = 00000000 00000000 00000000 00000010// char *p0; p0=(char*)p; //Printing required statements// printf("Size of the character is %d\n",sizeof(char));//1// printf("Address of %d is %d\n",a,p0);//Address Value(p)// printf("Value of %d is %d\n",a,*p0);//First byte of value a - 2// printf("Value of next address location of %d is %d\n",a,*(p0+1));//Second byte of value a - 0// printf("Address of next address location of %d is %d\n",a,(p0+1));//Address value(p)+1// }
出力
上記のプログラムを実行すると、次の結果が得られます-
Size of the integer is 4 Address of 2 is 6422028 Value of 2 is 2 Value of next address location of 2 is 463824 Address of next address location of 2 is 6422032 Size of the character is 1 Address of 2 is 6422028 Value of 2 is 2 Value of next address location of 2 is 0 Address of next address location of 2 is 6422029
-
C言語でのシフト演算とは何ですか?
問題 C言語を使用して、数値の左シフト、右シフト、および補数を表示する簡単なプログラムは何ですか? 解決策 左シフト 変数の値が1回左シフトされると、その値は2倍になります。 たとえば、a =10、次にa <<1 =20 右シフト 変数の値を1回右シフトすると、その値は元の値の半分になります。 1 =5 例 以下はシフト操作のCプログラムです- #include<stdio.h> main (){ int a=9; printf("Rightshift of a = %d\n",a&
-
C言語でのポインタアクセスの概念を説明する
ポインタは、他の変数のアドレスを格納する変数です。 ポインタの宣言、初期化、アクセス 次のステートメントを検討してください- int qty = 179; ポインタの宣言 int *p; 「p」は、別の整数変数のアドレスを保持するポインタ変数です。 ポインタの初期化 アドレス演算子(&)は、ポインタ変数を初期化するために使用されます。 int qty = 175; int *p; p= &qty; 文字列の配列内の要素にアクセスする際にポインタがどのように役立つかの例を考えてみましょう。 このプログラムでは、特定の場所に存在する要素にアクセスしようとしています。操