Get the string length : char array string « String « C++






Get the string length

  
#include <iostream>  
#include <string.h>  
using namespace std;
main(void)  
{  
  int i;  
  i = 10;  
     
  int j = 100;
     
  cout << i*j << "\n";  
     
  cout << "Enter a string: ";  
  char str[80];  
  cin >> str;  
     
  // display the string in reverse order  
  int k;  
  k = strlen(str);  
  k--;  
  while(k>=0) {  
    cout << str[k];  
    k--;  
  }  
     
  return 0;  
}
  
    
  








Related examples in the same category

1.Demonstrate the basic null-terminated string functions.
2.Operator pointer
3.Count spaces, punctuation, digits, and letters.
4.Convert char array to upper case
5.Using strcpy() to assign value from one char array to another char array
6.Using strncpy() to assign one char array to another char array
7.Using strcpy and string terminator
8.Using strncpy() and string terminator
9.Using strcat() and strncat().
10.Using atoi() function
11.Filling an Array
12.Use strlen() to get the length of a char array buffer