Wednesday, April 1, 2015

C program to calculate length of a given string without using standard function.

Write a ‘C’ program to calculate length of a given string without using standard function.


#include<stdio.h>
#include<conio.h>
#include<string.h>
void main()
{
char name[20];
int i,l=0;
clrscr();
printf("enter the string");
gets(name);
for(i=0;name[i]!='\0';i++)
{
l++;
}
printf("%d",l);
getch();
}

Featured posts

वन्दे मातरम्

 वन्दे मातरम् 🇮🇳   अर्थ: "मैं तुझे नमन करता हूँ, माँ"  ये सिर्फ एक नारा नहीं, भारत माँ के प्रति श्रद्धा और प्रेम है। इसके बारे म...

Popular posts