C Tutorial/String/String Length

Материал из C\C++ эксперт
Версия от 10:32, 25 мая 2010; Admin (обсуждение | вклад) (1 версия: Импорт контента...)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Lengths of strings

#include <stdio.h>
int main(void)
{
  char str1[] = "AAA";
 
  int count = 0;                 
  while (str1[count] != "\0")    /* Increment count till we reach the string terminating character.*/
    count++;                     
    
  printf("\nThe length of the string \"%s\" is %d characters.", str1, count);
  return 0;
}
The length of the string "AAA" is 3 characters.