C Examples

WAP in C to Calculate length of a string using pointer!

The Program in C to Calculate length of a string using pointer is given below:

#include <stdio.h>

int string_length(char *str) {
    int count = -1;
    while (*str != '\0') {
        count++;
        str++;
    }
    return count;
}

int main() {
    char str[100];
    printf("Enter a string: ");
    fgets(str, 100, stdin);

    int length = string_length(str);
    printf("The length of the string is: %d\n", length);

    return 0;
}

Output:

Enter a string: i am cool as wind
The length of the string is: 17

Pro-Tips💡

In the string_length function, the pointer str is passed as an argument.

The function uses the pointer to iterate through the string until the null character ‘\0’ is found.

The function increments a counter variable for each character that it encounters, and once it reaches the null character, it returns the count as the length of the string.

The pointer str is used to access each character of the string by incrementing it in each iteration of the loop, which is a way of accessing the memory address of the next character in the string.

In the main function, the fgets function reads the string input from the user and stores it in the variable str, which is a char array and also a pointer to the first element of the array.

This pointer is then passed to the string_length function as an argument, where it is used to access the string and calculate its length.

Learn C-Sharp ↗

C-sharp covers every topic to learn about C-Sharp thoroughly.

Learn C Programming ↗

C-Programming covers every topic to learn about C-Sharp thoroughly.

Learn C++ Programming↗

C++ covers every topic to learn about C-Sharp thoroughly.

Codeauri is Code Learning Hub and Community for every Coder to learn Coding by navigating Structurally from Basic Programming to Front-End Development, Back-End Development to Database, and many more.

Related Posts

C# Program to Find Sum of Rows & Columns of a Matrix

The Program in C# Program to Find Sum of Rows & Columns of a Matrix is given below: Output: Hello Codeauri Family,enter the number of rows and columns…

C# Program to Calculate Determinant of Given Matrix

The Program in C# Program to Calculate Determinant of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns of the matrix…

C# Program to Find Sum of right Diagonals of a Matrix

The Program in C# Program to Find Sum of right Diagonals of a Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns…

C# Program to Find Transpose of Given Matrix

The Program in C# Program to Find Transpose of Given Matrix is given below: Output: Hello Codeauri Family, enter the number of rows and columns in the matrix:22Enter…

C# Program for Multiplication of two square Matrices

The Program in C# Program for Multiplication of two square Matrices is given below: Output: Hello Codeauri Family, enter the number of rows/columns in the matrices:2Enter the elements…

C# Program to Delete Element at Desired position From Array

The Program in C# Program to Delete Element at Desired position From Array is given below: Output: Hello Codeauri Family, enter the number of elements in the array:4Enter…

Leave a Reply

Your email address will not be published. Required fields are marked *

Your Journey into Code Begins Now: Discover the Wonders of Basic Programming

X