c_cpp 使用通过char移动pnter的示例**

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 使用通过char移动pnter的示例**相关的知识,希望对你有一定的参考价值。

#include "stdio.h"

//c example that shows shifting using pnter of char pnter

int main(void) {
  const char* mes = "Hello World\n";
  char** pnt = &mes;
  printf(" is %s\n", *pnt);
  //is Hello World
  mes += 3;
  printf(" is %s\n", *pnt);  
  // is lo World
  return 0;
}

以上是关于c_cpp 使用通过char移动pnter的示例**的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 将char pnt移动到字符串中的第一个非空格字符

c_cpp 在cpp中使用char数组

c_cpp 在const char **中使用strtod

c_cpp 如何在C中将const char *转换为char *?

c_cpp string→char *

c_cpp int↔char