Tech Study

Write a C# program to find the length of a string without using library function

Introduction

I have used Visual Studio 2012 for debugging purpose. But you can use any version of visul studio as per your availability..

using System;
public class StringExercise
{
    public static void Main()
    {
        string str; 
        int length = 0;
 
        Console.Write("Input the string : ");
        str = Console.ReadLine();
 
        foreach (char chr in str)
        {
            length += 1;
 
        }
        Console.Write("Length of the string is : {0}\n\n",length);
 
        Console.ReadLine();
    }
}

Result

Write a C# program to find the length of a string without using library function
Write a C# program to find the length of a string without using library function

TaggedWrite a C# program to find the length of a string without using library function

Python Examples

Introduction: Python Examples are the basic programming concepts of python like python syntax,python data types,,python operators,python if else,python comments etc.. …

Read more

C String Functions

C String Functions perform certain operations, It provides many useful string functions which can come into action. The <string.h> header …

Read more