溫馨提示×

c語言字符數(shù)組初始化的方法有哪些

小億
150
2024-02-23 14:04:27
欄目: 編程語言

在C語言中,字符數(shù)組可以通過多種方式進(jìn)行初始化,包括以下幾種方法:

  1. 使用字符串常量初始化字符數(shù)組:
char str[] = "Hello World";
  1. 使用字符數(shù)組初始化列表初始化字符數(shù)組:
char str[] = {'H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd', '\0'};
  1. 使用字符數(shù)組初始化列表和指定大小初始化字符數(shù)組:
char str[12] = {'H', 'e', 'l', 'l', 'o', ' ', 'W', 'o', 'r', 'l', 'd', '\0'};
  1. 使用循環(huán)結(jié)構(gòu)初始化字符數(shù)組:
char str[12];
for (int i = 0; i < 11; i++) {
    str[i] = 'A' + i;
}
str[11] = '\0';

0