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
What does typeof return in c?
can anyone suggest some site name..where i can get some good data structure puzzles???
Why c is called object oriented language?
What is an example of structure?
Why do we need volatile in c?
What does c mean?
Why c is called top down?
Explain what does the format %10.2 mean when included in a printf statement?
Explain what is the difference between #include and #include 'file' ?
Is null valid for pointers to functions?
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
Explain how do you use a pointer to a function?
Is that possible to store 32768 in an int data type variable?
show how link list can be used to repersent the following polynomial i) 5x+2
What are valid operations on pointers?