Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

how to find string length wihtout using c function?

Answer Posted / ankitecian

int StrLen(const char *_input)
{
int _len = 0;
while( *(_input + _len) != NULL)
{
_len++;
}
return _len;
}

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain what does the format %10.2 mean when included in a printf statement?

1414


Explain how do you list files in a directory?

1117


What is the use of bitwise operator?

1175


Can you please explain the difference between malloc() and calloc() function?

1183


What do you mean by dynamic memory allocation in c? What functions are used?

1227


Can one function call another?

1175


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

3745


explain what is an endless loop?

1148


Stimulate calculator using Switch-case-default statement for two numbers

3041


What are multidimensional arrays?

1175


why programs in c are running with out #include? some warnings are display in terminal but we execute the program we get answer why? eg: main() { printf("hello world "); }

1815


where are auto variables stored? What are the characteristics of an auto variable?

1107


Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor

3607


Describe the steps to insert data into a singly linked list.

1118


What is a program flowchart?

1286