>  기사  >  백엔드 개발  >  C에서 포인터 덧셈과 뺄셈의 예를 들어보세요.

C에서 포인터 덧셈과 뺄셈의 예를 들어보세요.

WBOY
WBOY앞으로
2023-08-31 09:21:071318검색

C에서 포인터 덧셈과 뺄셈의 예를 들어보세요.

포인터에는 C 프로그래밍에 매우 중요한 간단한 개념이 많이 있습니다.

아래에는 두 가지 포인터 산술 개념, 즉 C 포인터 덧셈과 뺄셈이 설명되어 있습니다.

C 포인터 추가

C 포인터 추가는 포인터 변수에 값을 추가하는 것을 말합니다.

공식은 다음과 같습니다 −

new_address= current_address + (number * size_of(data type))

예제

다음은 C 포인터 추가를 위한 C 프로그램입니다.

Demonstration

#include<stdio.h>
int main(){
   int num=500;
   int *ptr;//pointer to int
   ptr=#//stores the address of number variable
   printf("add of ptr is %u </p><p>",ptr);
   ptr=ptr+7; //adding 7 to pointer variable
   printf("after adding add of ptr is %u </p><p>",ptr);
   return 0;
}

Output

위 프로그램을 실행하면 다음과 같은 결과가 나옵니다 −

add of ptr is 6422036
after adding add of ptr is 6422064

C 포인터 빼기

포인터 변수에서 값을 뺍니다. 포인터 변수에서 숫자를 빼면 주소가 됩니다.

공식은 다음과 같습니다 −

new_address= current_address - (number * size_of(data type))

예제

다음은 C 포인터 뺄셈을 위한 C 프로그램입니다

실시간 데모

#include<stdio.h>
int main(){
   int num=500;
   int *ptr;//pointer to int
   ptr=#//stores the address of number variable
   printf("addr of ptr is %u </p><p>",ptr);
   ptr=ptr-5; //subtract 5 to pointer variable
   printf("after sub Addr of ptr is %u </p><p>",ptr);
   return 0;
}

Output

위 프로그램을 실행하면 다음과 같은 결과가 나옵니다 −

으으으으

위 내용은 C에서 포인터 덧셈과 뺄셈의 예를 들어보세요.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제