首页  >  文章  >  后端开发  >  给出一个C指针加法和减法的例子

给出一个C指针加法和减法的例子

WBOY
WBOY转载
2023-08-31 09:21:071318浏览

给出一个C指针加法和减法的例子

指针有很多简单的概念,对于C编程非常重要。

下面解释了两个指针算术概念,分别是C指针加法和减法。

C指针加法

C指针加法指的是将一个值添加到指针变量上。

公式如下 −

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

Example

以下是C指针加法的C程序:

 演示

#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;
}

输出

当上述程序被执行时,它产生以下结果 −

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;
}

输出

当上述程序被执行时,它产生以下结果 −

addr of ptr is 6422036
after sub Addr of ptr is 6422016

以上是给出一个C指针加法和减法的例子的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:tutorialspoint.com。如有侵权,请联系admin@php.cn删除

相关文章

查看更多