Codeforcoding

C++ program to count the total number of characters in the given string including space

C++ program to count the total number of characters in the given string including space

In this article, we will discuss the concept of the C++ program to count the total number of characters in the given string including space

In this post, we are going to learn how to count the total number of character including space of the given String in C ++ programming language

C++ program to count the total number of characters in the given string including space
Count character

Code to count the total number of characters in the given string

Count the number of characters in the given string using for loop

The program allows the user to enter a String and then it counts and display the number of characters including space of the given string using for loop in C++ programing language

Program 1

#include <iostream>
#include <conio.h>
#include <stdio.h>
using namespace std;

int main()
{
    char str[100];
    int i,totChar;
totChar=0;
    cout<<"Please enter the string for count characters\n";
    gets(str);
//count characters of a string wit out space

    for(i=0; str[i] != '\0'; i++){
        if(str[i]!='\0')
        {
            totChar++;
        }
    }
    cout<<"The total characters of the given string= "<<totChar;
    getch();
    return 0;
}

When the above code is executed, it produces the following result

Please enter the string for count characters
Cpp is a basic language
The total characters of the given string=23

 

Approach

  1. Declare a character array as char str[100];
  2. Declare and initialize an integer variable as int i ,totChar=0;
  3. The user asked to enter a string to count character
  4. A for-loop is used to count total characters of the given string using the totChar variable
  5. It is initialized as i=0, and checks condition whether str[i] != ‘\0’;  and then executes the loop until the given condition becomes true
  6. Use an if condition to test if(str.charAt(i)!=’ \0′), if it is true,  totChar  becomes totChar + 1(totChar =totChar + 1)
  7. Finally, the program displays the total number of the character using the totChar variable

 

Count the  number of characters in the given string  using while loop

The program allows the user to enter a String and then it counts and display the total number of characters including space of the given string using while loop in C++ programing language

Program 2

#include <iostream>
#include <conio.h>
#include <stdio.h>
using namespace std;

int main()
{
    char str[100];
    int i,totChar;
totChar=0;
    cout<<"Please enter the string for count characters\n";
    gets(str);
//count characters of a string wit out space
i=0;
    while(str[i] != '\0'){
        if(str[i]!='\0')
        {
            totChar++;
        }
         i++;
    }
    cout<<"The total characters of the given string= "<<totChar;
    getch();
    return 0;
}

When the above code is executed, it produces the following result

Please enter the string for count characters
Cpp is the best language
The total characters of the given string=24


Approach

  1. Declare a character array as char str[100];
  2. Declare and initialize an integer variable as int i ,totChar=0;
  3. The user asked to enter a string to count character
  4. A while-loop is used to count total characters of the given string using the totChar variable
  5. It is initialized as i=0, and checks condition whether str[i] != ‘\0’;  and then executes the loop until the given condition becomes true
  6. Use an if condition to test if(str.charAt(i)!=’ \0′), if it is true,  totChar  becomes totChar + 1(totChar =totChar + 1)
  7. Finally, the program displays the total number of the character using the totChar variable

 

Count the number of characters in the given string  using do-while loop

The program allows the user to enter a String and then it counts and display the number of characters including space of the given string using do-while loop in C++ programing language

Program 3

#include <iostream>
#include <conio.h>
#include <stdio.h>
using namespace std;

int main()
{
    char str[100];
    int i,totChar;
totChar=0;
    cout<<"Please enter the string for count characters\n";
    gets(str);
//count characters of a string wit out space
i=0;
    do{
        if(str[i]!='\0')
        {
            totChar++;
        }
         i++;
    }while(str[i] != '\0');
    cout<<"The total characters of the given string= "<<totChar;
    getch();
    return 0;
}

When the above code is executed, it produces the following result

Please enter the string for count characters

Cpp is an OOP supported language

The total characters of the given string=32

 

Approach

  1. Declare a character array as char str[100];
  2. Declare and initialize an integer variable as int i ,totChar=0;
  3. The user asked to enter a string to count character
  4. A do-while loop is used to count total characters of the given string using the totChar variable
  5. It is initialized as i=0, and checks condition whether str[i] != ‘\0’;  and then executes the loop until the given condition becomes true
  6. Use an if condition to test if(str.charAt(i)!=’ \0′), if it is true,  totChar  becomes totChar + 1(totChar =totChar + 1)
  7. Finally, the program displays the total number of the character using the totChar variable

 

Suggested for you

for loop in C++ language

while loop in C++ language

do-while loop in C++ language

 

Similar post

C++ program to count the total number of characters in the given string

C program to count the total number of characters in the given string

Python program to count the total number of characters in the given string

 

Java program to count the total number of characters in the given string including space

C program to count the total number of characters in the given string including space

Python program to count the total number of characters in the given string including space

 

 

Java program: count the total number of characters including space in the given string
Program to count the total number of characters in the given string with space in Python
Exit mobile version