c_cpp 在c中检查null char

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 在c中检查null char相关的知识,希望对你有一定的参考价值。

#include "stdio.h"
#include "string.h"
#include "stdlib.h"

//string examples for c

int main(void) {
  const char* a = "foobeans";
  long len = strlen(a);
  char* b = malloc(len);
  strcpy(b, a);
  puts(b);
  printf("last is null %d\n", b[len] == '\0');
  printf("the size is %d\n", len);
  return 0;
}

以上是关于c_cpp 在c中检查null char的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp 在cpp中使用char数组

c_cpp 在const char **中使用strtod

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

c_cpp c中简单的扩展char缓冲区

c_cpp 更改特定字符串中的char

c_cpp 在cpp挑战char问题