Wednesday, February 11, 2015

C program to find length of a string


C program to find length of a string

#include<stdio.h>
#include<conio.h>

void main()
{
int i;
char str[50];
clrscr();
printf("Enter a string:");
gets(str);

for(i=0;str[i]!=

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.